本例以Windows,JDK1.7 为基础,演示执行文件的创建的方法。

文件的创建是常用的,在java的文件创建中通常可以使用 File.createNewFile()

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.devnp.io;

import java.io.File;
import java.io.IOException;

public class CreateFile {

public static void main(String[] args) throws IOException {
// TODO Auto-generated method stub

File file = new File("D:\\Person-Test\\1.txt");

//check the file exist or not
if(file.exists()){
System.out.println("File Aready Exist.");
}else {
file.createNewFile();

System.out.println("Create File Success.");
}
}

}