淘先锋技术网

首页 1 2 3 4 5 6 7

我正在制作一个打开并读取文件的程序。

这是我的代码:

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.java和hello.txt在同一目录中可以找到:

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

我想知道我做错了什么?