java read file to string
public String readFile(String filePath) {
String result = "";
try {
result = Files.readString(Paths.get(filePath));
} catch (IOException e) {
e.printStackTrace();
}
return result;
}
java read file to string
public String readFile(String filePath) {
String result = "";
try {
result = Files.readString(Paths.get(filePath));
} catch (IOException e) {
e.printStackTrace();
}
return result;
}
java load entire file to string
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Paths;
public class ReadFileToString
{
public static void main(String[] args)
{
String filePath = "c:/temp/data.txt";
System.out.println( readAllBytesJava7( filePath ) );
}
//Read file content into string with - Files.readAllBytes(Path path)
private static String readAllBytesJava7(String filePath)
{
String content = "";
try
{
content = new String ( Files.readAllBytes( Paths.get(filePath) ) );
}
catch (IOException e)
{
e.printStackTrace();
}
return content;
}
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us