集册 Java实例教程 创建新文件

创建新文件

欢马劈雪     最近更新时间:2020-01-02 10:19:05

437
创建一个新文件

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 提供 
**/