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

File构建实例的路径:绝对路径和相对路径

时间:2016-11-03 13:27:26      阅读:287      评论:0      收藏:0      [点我收藏+]

标签:exist   pre   property   解析   public   string   file   project   span   

    public static void main(String[] args) throws Exception
    {
        File file = new File("bin/dyan.txt");
        System.out.println(System.getProperty("user.dir"));
        System.out.println(file.exists());
        System.out.println(file.length());
    }

相对路径的话,需要其他路径信息才可以解析定位到所表示的文件。

默认情况下,java.io 包中的类总是根据当前用户目录来解析相对路径名。

此目录由系统属性 user.dir 指定,通常是 Java 虚拟机的调用目录。

我的user.dir 输出的内容是 E:\core_wkspace\TestProject

所以相对路径写为bin/dyan.txt

 

 

 

File file = new File("E:\\core_wkspace\\TestProject\\bin\\yan.txt");

绝对路径就不说了,完整的路径名,不需要任何其他信息就可以定位到所表示的文件。

 

File构建实例的路径:绝对路径和相对路径

标签:exist   pre   property   解析   public   string   file   project   span   

原文地址:http://www.cnblogs.com/ahudyan-forever/p/6025962.html

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