gpt4 book ai didi

java - FileReader 无法读取文件

转载 作者:行者123 更新时间:2023-12-01 19:34:16 27 4
gpt4 key购买 nike

我收到错误“未处理的异常:java.io.FileNotFoundException,虽然我确定文件路径,但需要一些帮助

public static void main(String[] args) {

BufferedReader reader = null;
int total =0;
reader = new BufferedReader(new FileReader("C:\\Numbers.txt"));
}

最佳答案

您的代码缺乏异常处理。在编译时,您确定文件存在,但程序却不确定。只需在 main 方法中声明即可:

public static void main(String[] args) throws FileNotFoundException {

}

或者使用 try-catch block :

try {
reader = new BufferedReader(new FileReader("C:\\Numbers.txt"));
} catch (IOException e) {
e.printStackTrace();
}

关于java - FileReader 无法读取文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58414668/

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