35 lines
1.1 KiB
Java
35 lines
1.1 KiB
Java
package lectura_escritura_archivos; /** @author jp.av.dev */
|
|
|
|
import java.io.BufferedReader;
|
|
import java.io.FileNotFoundException;
|
|
import java.io.FileReader;
|
|
import java.io.IOException;
|
|
|
|
public class LeerArchivoTexto {
|
|
|
|
public static void main(String[] args) {
|
|
FileReader fr = null;
|
|
try {
|
|
fr = new FileReader("./datos.txt");
|
|
BufferedReader entrada = new BufferedReader(fr);
|
|
String cadena = entrada.readLine();
|
|
while (cadena != null) {
|
|
System.out.println(cadena);
|
|
cadena = entrada.readLine();
|
|
}
|
|
} catch (FileNotFoundException e) {
|
|
System.out.println(e.getMessage());
|
|
} catch (IOException e) {
|
|
System.out.println(e.getMessage());
|
|
} finally {
|
|
try {
|
|
if(fr != null) {
|
|
fr.close();
|
|
}
|
|
} catch (IOException e) {
|
|
System.out.println(e.getMessage());
|
|
}
|
|
}
|
|
}
|
|
}
|