File.createNewFile()方法
在Java中用於創建一個文件,並返回一個布爾值:如果文件被創建成功,則為true;如果該文件已經存在,或者操作失敗返回 false。
package com.yiibai.file;
import java.io.File;
import java.io.IOException;
public class CreateFileExample
{
public static void main( String[] args )
{
try {
File file = new File("c:\\gitbook.net.txt");
if (file.createNewFile()){
System.out.println("File is created!");
}else{
System.out.println("File already exists.");
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
參考
-
http://java.sun.com/javase/6/docs/api/java/io/File.html