创建一个新文件
import java.io.IOException; import java.nio.file.FileSystems; import java.nio.file.Files; /* 来自 *NowJava.com*/ import java.nio.file.Path; public class Main { public static void main(String[] args) { Path newfile = FileSystems.getDefault().getPath( "C:/folder1/folder2/2010/my.txt"); try { Files.createFile(newfile); } catch (IOException e) { System.err.println(e); } } } /** 时代Java - N o w J a v a . c o m 提供 **/