如果要在中创建文件C:/a/b/test.txt,可以执行以下操作:
C:/a/b/test.txt
File f = new File("C:/a/b/test.txt");
另外,我想FileOutputStream用于创建文件。那我该怎么办呢?由于某种原因,该文件未在正确的目录中创建。
FileOutputStream
最好的方法是:
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();