Answers for "how to read from file and convert to string in java"

1

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;
}
Posted by: Guest on June-06-2021

Code answers related to "how to read from file and convert to string in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language