how to read from text file java code example

Example 1: java read text file

// java read text file example code
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 2: reading from a text file in java

public static void main(String[] args) throws Exception 
  { 
    // pass the path to the file as a parameter 
    FileReader fr = new FileReader("C:\\Users\\pankaj\\Desktop\\test.txt"); 
  
    int i; 
    while ((i=fr.read()) != -1) 
      System.out.print((char) i); 
  }

Example 3: java read file

try (Stream<String> stream = Files.lines(Paths.get(String.valueOf(new File("yourFile.txt"))))) {
	stream.forEach(System.out::println);
} catch (IOException e) {
	e.printStackTrace();
}

Tags:

Java Example