java – ServletContext getResource不工作

前端之家收集整理的这篇文章主要介绍了java – ServletContext getResource不工作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图使用ServletContext.getResource来检索对图像文件java.net.url引用(然后我将使用iText包含在PDF库中).
当我使用ServletContext.getRealPath(“picture.jpg”)时,我收到一个字符串URL.但是,getResource总是返回null.

示例1:

String picture = ServletContext.getRealPath("picture.jpg");
// picture contains a non-null String with the correct path
URL pictureURL = ServletContext.getResource(picture);
// pictureURL is always null

示例2:

URL pictureURL = ServletContext.getResource("picture.jpg");
// pictureURL is always null

那么构建指向我的webapps /文件夹中的文件的java.net.URL对象的正确方法是什么?为什么getRealPath工作但不是getResource?

万一有帮助,这里是我的文件夹结构

webapps -> mySite -> picture.jpg

我的图片需要存储在WEB-INF或WEB-INF / classes中才能被getResource读取?

解决方法

Returns a URL to the resource that is mapped to a specified path. The path must begin with a “/” and is interpreted as relative to the current context root.

所以你必须提供上下文相对的完整路径.例如:

URL pictureURL = servletContext.getResource("/images/picture.jpg");

(注意下面的servletContext变量)

原文链接:https://www.f2er.com/java/124699.html

猜你在找的Java相关文章