gpt4 book ai didi

java - 在Java中读取文件,找不到该文件

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

我编写了以下代码来用 Java 读取 txt:

public static void main(String[] args) throws FileNotFoundException, IOException {
// TODO code application logic here
String name;
String line;
System.out.println("Input file name");
Scanner inp=new Scanner(System.in);
name=inp.nextLine();
FileReader file=new FileReader(name);
BufferedReader br=new BufferedReader(new FileReader(name));
while((line=br.readLine())!=null){
System.out.println(br.readLine());
}
br.close();
}

我有一个txt文件,它位于我的java代码的同一文件夹下,它的名称是data.txt(其中包含逐行的数字列表),我遇到的问题是,当我运行这个文件时,我得到了以下消息:

Exception in thread "main" java.io.FileNotFoundException: data.txt (The system cannot find the file specified)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.<init>(FileInputStream.java:138)
at java.io.FileInputStream.<init>(FileInputStream.java:97)

哪里错了?另外,如果文件不存在,我如何用 try catch block 包围它?

我已经放置了System.out.println(new File(name).getAbsoluteFile);并且它显示了通过data.txt的所有路径,但我想默认指向我当前的文件夹;我应该使用扫描仪吗?

最佳答案

如果您想使用相对文件名并且从 netbeans 或 eclipse 等 IDE 运行,则文件结构应如下所示

ProjectRoot
file.txt
src
build

file.txt 是您正在使用的相对路径。如果文件路径中没有指定其他目录,IDE 将首先在项目根目录中搜索该文件。

关于java - 在Java中读取文件,找不到该文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20332755/

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