gpt4 book ai didi

java - 我在 Eclipse 中使用 Java 时遇到问题,无法找到明显存在的文件

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

我似乎找不到问题,调试不起作用。但基本上,我可以清楚地看到该文件在 Eclipse 中。文件在那里,但程序不会读取它。我该怎么办?

这是提取文件的代码:

Scanner inFile = new Scanner(new FileReader("studentData.txt"));

它不会提取文件

最佳答案

异常告诉你问题所在。

public static void main(String[] args) 
{
try
{
Scanner inFile = new Scanner(new FileReader(""));
} catch (FileNotFoundException e) {
//do something with e, or handle this case
}
}

或者你可以使用-

public static void main(String[] args) throws FileNotFoundException
{
Scanner inFile = new Scanner(new FileReader("path"));

}

关于java - 我在 Eclipse 中使用 Java 时遇到问题,无法找到明显存在的文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19142267/

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