如何从资源文件夹中获取文件。弹簧框架
我正在尝试取消我的 xml 文件:
public Object convertFromXMLToObject(String xmlfile) throws IOException {
FileInputStream is = null;
File file = new File(String.valueOf(this.getClass().getResource("xmlToParse/companies.xml")));
try {
is = new FileInputStream(file);
return getUnmarshaller().unmarshal(new StreamSource(is));
} finally {
if (is != null) {
is.close();
}
}
}
但是我得到这个错误:java.io.FileNotFoundException:null(没有这样的文件或目录)
这是我的结构:
为什么我无法从资源文件夹中获取文件?谢谢。
更新。
重构后,
URL url = this.getClass().getResource(“/xmlToParse/companies.xml”);File file = new File(url.getPath());
我可以更清楚地看到一个错误:
java.io.FileNotFoundException: /content/ROOT.war/WEB-INF/classes/xmlToParse/companies.xml (No such file or directory)
它试图找到WEB-INF/classes/我已经在那里添加了文件夹,但仍然得到这个错误:(