码迷,mamicode.com
首页 > 其他好文 > 详细

IO--File

时间:2016-11-12 09:36:19      阅读:147      评论:0      收藏:0      [点我收藏+]

标签: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("删除成功!");
            }
        }
    }

}
File测试类

 

IO--File

标签:ges   except   file操作   技术分享   block   --   文件名   log   row   

原文地址:http://www.cnblogs.com/999-/p/6056178.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!