使用createNewFile创建文件
//方式1:new File(String pathname)
@Test
//方式1:
public void create01() throws IOException {
String filePath = "/Users/xiaoxin/Desktop/1.txt";
File file = new File(filePath);
System.out.println("成功");
file.createNewFile();
}
成功,然后在桌面出现了 1.txt 文件
//方式2:new File(File parent,String child)
@Test
//方式2
public void create02() throws IOException {
File parentFile = new File("/Users/xiaoxin/Desktop/");
String fileName = "2.txt";
File file = new File(parentFile,fileName);
System.out.println("成功");
file.createNewFile();
}
成功,然后在桌面出现了 2.txt 文件
//方式3:new File(String parent,String child)
@Test
//方式3:
public void create03() throws IOException {
String parentPath = "/Users/xiaoxin/Desktop/";
String fileName = "3.txt";
File file = new File(parentPath, fileName);
System.out.println("成功");
file.createNewFile();
}
成功,然后在桌面出现了 3.txt 文件
其余的类似
本文详细介绍了Java中使用File类创建文件的三种方法,包括指定完整路径、指定父目录和子文件名以及拼接路径和文件名的方式,并通过示例代码展示了如何创建并验证文件的成功创建。每个方法都成功在桌面创建了相应的txt文件。
1286

被折叠的 条评论
为什么被折叠?



