码迷,mamicode.com
首页 > 编程语言 > 详细

Java数据流之File

时间:2014-06-18 21:22:15      阅读:296      评论:0      收藏:0      [点我收藏+]

标签:java   get   文件   数据   name   new   

  @Test
    public  void fileTest() {
        //创建File 对象
        File file=new File("hell.txt");
        //获取文件名
        System.out.println(file.getName());
        //访问文件的绝对路径
        System.out.println(file.getAbsolutePath());
        //为文件对象重命名
        file.renameTo(new File("hellWord.txt"));
        //判断文件是否真的存在
        if(!file.exists()){
            try {
                //如果不存在,创建
                file.createNewFile();
            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
        }
        System.out.println(file.getName());
        System.out.println("古典风格公司");
        
    }

Java数据流之File,布布扣,bubuko.com

Java数据流之File

标签:java   get   文件   数据   name   new   

原文地址:http://www.cnblogs.com/liuquande/p/3790363.html

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