ファイルを開いて読み取るプログラムを作成しています。これは私のコードです:
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)
myFileRead.java
とhello.txt
where は、次の場所にある同じディレクトリにあります。
C:\Users\User\Documents\Workspace\FileRead
私は何が間違っているのだろうか?