read text file java code example
Example 1: java read file text
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();
}
Example 2: java read text file
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();
}
}
Example 3: java read text file
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();
}
}
Example 4: java read text file
import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.IOException;
public class JavaReadTextFileUsingBufferedReader
{
public static void main(String[] args) throws IOException
{
File fl = new File("B:\\demo.txt");
BufferedReader br = new BufferedReader(new FileReader(fl));
String str;
while((str = br.readLine()) != null)
{
System.out.println(str);
}
br.close();
}
}
Example 5: java read text file
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Paths;
public class ReadTextFileAsStringJava
{
public static void main(String[] args) throws Exception
{
String strInput = readFileString("B:\demo.txt");
System.out.println(strInput);
}
public static String readFileString(String fileName) throws IOException
{
String strInput = "";
strInput = new String(Files.readAllBytes(Paths.get(fileName)));
return strInput;
}
}
Example 6: reading from a text file in java
public static void main(String[] args) throws Exception
{
FileReader fr = new FileReader("C:\\Users\\pankaj\\Desktop\\test.txt");
int i;
while ((i=fr.read()) != -1)
System.out.print((char) i);
}