Ejemplo 1: texto de archivo de lectura de Java
try(BufferedReader br = new BufferedReader(new FileReader("file.txt"))) {
StringBuilder sb = new StringBuilder();
String line = br.readLine();
while (line != null) {
sb.append(line);
sb.append(System.lineSeparator());
line = br.readLine();
}
String everything = sb.toString();
}
Ejemplo 2: archivo de texto de lectura de Java
// how to read text file line by line using FileReader class
import java.io.FileReader;
import java.io.IOException;
public class JavaReadTextFileUsingFileReader
{
public static void main(String[] args) throws IOException
{
FileReader fr = new FileReader("B:demo.txt");
int a;
while((a = fr.read()) != -1)
{
System.out.print((char) a);
}
fr.close();
}
}
Ejemplo 3: archivo de texto de lectura de Java
// java read text file with scanner
import java.io.File;
import java.io.FileNotFoundException;
import java.util.Scanner;
public class JavaReadTextFileScanner
{
public static void main(String[] args) throws FileNotFoundException
{
File fl = new File("B:demo.txt");
Scanner sc = new Scanner(fl);
while(sc.hasNextLine())
{
System.out.println(sc.nextLine());
}
sc.close();
}
}
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)