我正在编写一个文本分析程序来计算单词和句子等。要求用户输入要分析的文件。
实施例
“输入要分析的文件:” “输入:stuff.txt”
我将文件保存在我的项目中,但仅在我放入完整文件路径时才有效,下面是它的处理方式。
public void loadFromFile(String filePath) {
try {
theText = new String(Files.readAllBytes(Paths.get(filePath)));
} catch (Exception e) {
System.out.println("could not load file " + filePath);
e.printStackTrace();
}
}
我想简单地写一下stuff.txt而不是完整的文件路径