1.

Write code to read a text file in Java as string?

Answer»

Write code to read a text FILE in JAVA as string?
Below is the code to read a file as string in Java here we use readAllBytes method here to read file. Below is the code for the same


Download Code
// Java Program to READING data from text file
package IO;
import java.nio.file.*;;
public CLASS ReadTextAsString
{
public static String readFileAsString(String fileName)throws Exception
{
String data = "";
data = new String(Files.readAllBytes(Paths.get(fileName)));
return data;
}

public static void main(String[] args) throws Exception
{
String data = readFileAsString("C: Users pankaj Desktop test.java");
System.out.println(data);
}
}


Read File Java



Discussion

No Comment Found