gpt4 book ai didi

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

转载 作者:IT老高 更新时间:2023-10-28 20:48:52 25 4
gpt4 key购买 nike

我正在制作一个打开和读取文件的程序。这是我的代码:

import java.io.*;

public class FileRead{
public static void main(String[] args){
try{
File file = new File("hello.txt");
System.out.println(file.getCanonicalPath());
FileInputStream ft = new FileInputStream(file);

DataInputStream in = new DataInputStream(ft);
BufferedReader br = new BufferedReader(new InputStreamReader(in));
String strline;

while((strline = br.readLine()) != null){
System.out.println(strline);
}
in.close();
}catch(Exception e){
System.err.println("Error: " + e.getMessage());
}
}
}

但是当我运行时,我得到了这个错误:

C:\Users\User\Documents\Workspace\FileRead\hello.txt
Error: hello.txt (The system cannot find the file specified)

我的 FileRead.javahello.txt 在同一目录中可以找到:

C:\Users\User\Documents\Workspace\FileRead

我想知道我做错了什么?

最佳答案

尝试通过调用列出目录中所有文件的名称:

File file = new File(".");
for(String fileNames : file.list()) System.out.println(fileNames);

看看你是否会在列表中找到你的文件。

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

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