当我尝试在eclipse中使用servlet创建文本文件时,它会生成异常FileNotFound
File file = new File("WebContent/WEB-INF/user.txt");
file.createNewFile();
此后文件未找到异常抛出。
答案 0 :(得分:1)
你不需要提供路径。
File file = new File("user.txt");
file.createNewFile();
这将在user.txt
下创建一个文件Web-Inf
。
答案 1 :(得分:0)
异常是因为路径不存在。使用PremGenError的答案作为默认位置,或者如果要创建新路径,请执行file.mkdirs()