本帖最后由 李娟 于 2011-12-23 23:12 编辑
import java.io.*;
class FileDemo
{
public static void main(String[] args) throws IOException
{
method_1();
//consMethod();
}
public static void method_1()throws IOException
{
File f = new File("file.txt"); //只有这一行不能在文件夹中看到file.txt
f.deleteOnExit();
//code();
//sop("creat:"+f.createNewFile()); //而只有加上这行代码才能看到,这是为什么?
//sop("delete:"+f.delete());
} |
|