Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Eclipse でサーブレットを使用してテキスト ファイルを作成しようとすると、例外が生成されます。FileNotFound
FileNotFound
File file = new File("WebContent/WEB-INF/user.txt"); file.createNewFile();
この後、ファイルが見つからないという例外がスローされます。
パスを指定する必要はありません。
File file = new File("user.txt"); file.createNewFile();
user.txtの下にファイルが作成されますWeb-Inf。
user.txt
Web-Inf
例外は、パスが存在しないためです。デフォルトの場所には PremGenError の回答を使用するか、新しいパスを作成する場合はfile.mkdirs()
file.mkdirs()