小编典典

如何在Java目录中创建文件?

java

如果要在中创建文件C:/a/b/test.txt,可以执行以下操作:

File f = new File("C:/a/b/test.txt");

另外,我想FileOutputStream用于创建文件。那我该怎么办呢?由于某种原因,该文件未在正确的目录中创建。


阅读 387

收藏
2020-03-23

共1个答案

小编典典

最好的方法是:

String path = "C:" + File.separator + "hello" + File.separator + "hi.txt";
// Use relative path for Unix systems
File f = new File(path);

f.getParentFile().mkdirs(); 
f.createNewFile();
2020-03-23