Lesen Sie die Textdatei Java auf Zeichenfolge
public String readFile(String filePath) {
String result = "";
try {
result = Files.readString(Paths.get(filePath));
} catch (IOException e) {
e.printStackTrace();
}
return result;
}
Aryman