gpt4 book ai didi

java - 系统找不到指定的Java文件

转载 作者:行者123 更新时间:2023-12-02 01:16:58 28 4
gpt4 key购买 nike

我明白这是一个基本问题,我很可能会直接寻找解决方案,但我不知道哪里出了问题。我查看了其他答案,但没有收到任何似乎有帮助的内容。

try {
FileReader reader = new FileReader("C:\\Users\\ethan\\Desktop\\MyFile.txt");
int character;

while ((character = reader.read()) != -1) {
System.out.print((char) character);
}
reader.close();

} catch (IOException e) {
e.printStackTrace();
}

最佳答案

也许该文件实际上是 MyFile.txt.txt (带有隐藏扩展名)。以下实用程序有助于找到实际错误的部分:包含目录或文件名。

Path path = Paths.get("C:\\Users\\ethan\\Desktop\\MyFile.txt");
checkPath(path);

boolean checkPath(Path path) {
if (!Files.exist(path) {
Path parent = path.getParent();
if (parent != null && checkPath(parent)) {
String name = path.getFileName().toString();
System.out.printf(
"In directory %s the following name is not found: '%s' = %s%n.",
parent.toString(), name,
Arrays.toString(name.toCharArray()));
}
return false;
}
return true;
}

关于java - 系统找不到指定的Java文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58415970/

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