因此,我正在开发使用HTML,CSS和AngularJS的基本Web应用程序,并且我已经开始使用Spring添加功能。当我添加几个JAR时,我开始收到错误
DEBUG DefaultFileSystem - Could not locate file config.xml at null: no protocol: config.xml
它似乎无法找到我目前位于src/main/resources
的config.xml文档,但我已尝试过其他地址。我在哪里可以设置文件的路径,而不是null
?
答案 0 :(得分:0)
Java中的资源加载可能很棘手,下面的类将在桌面,Web,类路径或当前工作目录中为您加载资源:
package test;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.net.MalformedURLException;
import java.net.URL;
public class JKResourceLoader {
public InputStream getResourceAsStream(String resourceName) {
URL url = getResourceUrl(resourceName);
if (url != null) {
try {
return url.openStream();
} catch (IOException e) {
throw new RuntimeException(e);
}
}
return null;
}
public URL getResourceUrl(String fileName) {
if (fileName == null) {
return null;
}
URL resource = getClass().getResource(fileName);
if (resource == null) {
resource = Thread.currentThread().getContextClassLoader().getResource(fileName);
if (resource == null) {
resource = ClassLoader.getSystemResource(fileName);
if (resource == null) {
File file = new File(fileName);
if (file.exists()) {
try {
resource = file.toURI().toURL();
} catch (MalformedURLException e) {
throw new RuntimeException(e);
}
}
}
}
}
return resource;
}
}
此外,您可以通过包含maven依赖项来使用我的jk-util项目,如下所示:
<dependency>
<groupId>com.jalalkiswani</groupId>
<artifactId>jk-util</artifactId>
<version>0.0.9</version>
</dependency>
然后调用以下代码:
InputStream in = JKResourceLoaderFactory.getResourceLoader().getResourceAsStream("/config.xml");