1. ホーム
  2. java

[解決済み】javaで指定されたファイルが見つからない

2022-01-18 08:56:38

質問

ファイルを開いたり、読んだりするプログラムを作っています。 これは私のコードです。

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が提案する方法で検証してみてください。