系统找不到Java中指定的文件

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

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

我想知道我在做什么错?

回答:

我已经复制了您的代码,并且运行正常。

我怀疑您在hello.txt的实际文件名中仅存在一些问题,或者您在错误的目录中运行。考虑通过@ Eng.Fouad建议的方法进行验证

以上是 系统找不到Java中指定的文件 的全部内容, 来源链接: utcz.com/qa/398064.html

回到顶部