在java中通过路径创建文件对象

public class MyFile {

 public static void main(String[] args) throws IOException {
  //通过路径创建文件对象
  File file = new File("C:\\test.txt");
  if (!file.exists()) { //如果不存在就创建
   file.createNewFile(); //抛出异常
  }else {
   System.out.println("文件已经存在");
  }

 }

}

你可能感兴趣的:(在java中通过路径创建文件对象)