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

Java从不同目录获取文件方式

时间:2015-02-26 11:34:27      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:

demo 
├─src 
│    └─com 
│            └─rgsc
│                    └─xml
│                          ├─XmlRead.java
│                          └─stu.xml
 
 
1. 错误方式:
String filePath="src/com/rgsc/xml/stu.xml";
File f = newFile(filePath);
发布为jar包后读取就会失败,因此不要使用这种方式
 
2. 类字节码方式
String filePath = XmlRead.class.getResource("/com/rgsc/xml/stu.xml").getFile();
// String filePath = XmlRead.class.getResource("stu.xml").getFile();  //可以采用相对路径
File f = new File(filePath);
注:1. 默认从当前类所在包查找,若要从根目录查找则,最前需加入“/”。
        2. 用这种方式,工作目录需为英文且不能有空格
 
2. 类加载器方式
 String filePath = XmlRead.class.getClassLoader().getResource("com/rgsc/xml/stu.xml") .getFile();
File f = new File(filePath );
注:1. 默认从类路径根目录查找,最前不需要加入“/”。
        2. 用这种方式,工作目录需为英文且不能有空格

 

Java从不同目录获取文件方式

标签:

原文地址:http://www.cnblogs.com/flykarry/p/4300761.html

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