File file = new File("d:/newfile/123.txt");
file.getParentFile().mkdirs();//创建目录
file.createNewFile();//创建文件
因为文件夹不属于文件,所以恐怕得你自己创建了,我给你在D盘创建一个123.txt文件的代码吧!
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
public class Demo {
public static void main(String[] args) {
File file = new File("D:/123.txt");
FileOutputStream fos = null;
try {
fos = new FileOutputStream(file);
} catch (FileNotFoundException e) {
e.printStackTrace();
} finally {
try {
fos.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}