Questions tagged «filewriter»

5
写入新文件时自动创建整个路径
我想用编写一个新文件FileWriter。我这样使用它: FileWriter newJsp = new FileWriter("C:\\user\Desktop\dir1\dir2\filename.txt"); 现在dir1和dir2当前不存在。我希望Java自动创建它们(如果尚未存在的话)。实际上,Java应该设置整个文件路径(如果尚不存在)。 我该如何实现?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.