集册 Java实例教程 删除文件

删除文件

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

468
若要删除文件,请为该文件创建一个File对象,然后调用delete方法。

import java.io.File;

import java.io.IOException;/** 来自 n  o  w  j  a  v  a . c o m**/


public class Main {

  public static void main(String[] arg) throws IOException {


    File f = new File("myfile.txt");

    if (f.delete())

          System.out.println("File deleted.");

    else

          System.out.println("File not deleted.");



  }

}