我需要在Web应用程序的src/main/resources
文件夹中查找图像。它是一个基于Apache CXF SAOP
的Web应用程序。
我们正在jboss env(jboss-eap-6.4)
运行它
在建立战争之后,部署了相同的内容。
但是,我无法获得上述文件的正确路径。请指教。
我尝试了多种选择。
File logo= new File("src/main/resources/image.jpg");
logo.getAbsolutePath(); // This works great when Junit tested, however breaks with the server.
这也行不通——
ClassLoader contextClassLoader = Thread.currentThread().getContextClassLoader();
contextClassLoader.getResource("image.jpg").getPath();
由于您使用的是 Maven,因此来自 src/main/resources
的文件将自动出现在类路径中。
要从类路径加载资源,请使用如下所示的内容:
InputStream in = getClass().getResourceAsStream("/image.jpg");
获取资源的路径或将其作为File
打开可能并不总是有效,因为该文件可能仍存储在.war
文件中。 因此,class.getResource()
将返回一个只能由应用服务器的类装入器识别的URL
。
在Maven项目中的文件结构:
src/main/resources/
src/main/resources/META-INF
src/main/resources/adir
src/main/resources/adir/afile.json
最后,这对我有用:
String resourceName = "adir/afile.json";
ClassLoader classLoader = Thread.currentThread().getContextClassLoader();
URL resource = classLoader.getResource(resourceName);
InputStream iStream = resource.openStream();
byte[] contents = iStream.readAllBytes();
System.out.println(new String(contents));
呵呵,托马斯