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. 用这种方式,工作目录需为英文且不能有空格
时间: 2024-10-18 23:33:52