read the text in a textfile + java code example

Example: 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