javafileexists怎么用?
java.io.File類的方法public boolean exists()用來判斷一個文件是否存在,如:import java.io.*;public class Demo{public static void main(String[] args) throws Exception{//將p指定為文件的路徑String p="test.txt";File f=new File(p);if(f.isFile()){if(f.exists()){System.out.println("文件"+p+"存在。");
}else{System.out.println("文件"+p+"不存在。");}}else{System.out.println(p+"不是文件。");}}}
上一篇html表格怎么分頁
下一篇div是什么商品