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 中创建一个文本文件 usnig servlet 时,它会生成一个异常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()