标签:ges except file操作 技术分享 block -- 文件名 log row
1.使用File操作文件
public class IoTest { public static void main(String[] args) throws IOException { /* 01.删除或者创建文件 * File file=new File("e:/io.txt"); addOrDel(file); */ File file=new File("e:/java/hello"); //file.mkdir(); 只能创建一层目录 file.mkdirs(); //同时创建多层目录 } /** * 删除或者创建文件 */ public static void addOrDel(File file) throws IOException { if (!file.exists()) { //判断文件是否存在 if (file.createNewFile()) {//创建成功 System.out.println("创建成功!"); System.out.println("是否是文件:"+file.isFile()); System.out.println("文件名称:"+file.getName()); System.out.println("文件大小:"+file.length()); System.out.println("文件的绝对路径:"+file.getAbsolutePath()); }else { System.out.println("创建失败"); } }else { System.out.println("文件已经存在!"); if (file.delete()) {//删除文件 System.out.println("删除成功!"); } } } }
标签:ges except file操作 技术分享 block -- 文件名 log row
原文地址:http://www.cnblogs.com/999-/p/6056178.html