gpt4 book ai didi

java - 读取文件时出现 NoSuchFileException

转载 作者:行者123 更新时间:2023-12-01 09:28:06 25 4
gpt4 key购买 nike

我正在尝试读取文件,但收到 NoSuchFileException。我知道我的代码可以工作,因为它可以在我创建的另一个程序中工作,但现在不起作用。是的,目录正确,并且 src 文件夹中有一个文本文件。请有人告诉我如何解决这个问题。

String[] words = new String[5];

Path file = Paths.get("H:\\Varsity work\\Java Programming\\Programs\\HangMan\\build\\classes\\HangMan.txt");
InputStream input = null;
try {
input = Files.newInputStream(file);
BufferedReader reader = new BufferedReader(new InputStreamReader(input));
String s = null;

while((s=reader.readLine())!=null) {
System.out.println(s);
}
input.close();
} catch(Exception e) {
System.out.println(e);
}

最佳答案

尝试使用 '/' 而不是 '\' ,这样就不需要转义任何按原样使用的字符和路径字符串。

关于java - 读取文件时出现 NoSuchFileException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39676342/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com