read text file in java to string 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: java read text file

// read text file as string in java
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;
   }
}

Tags:

Java Example