我有以下文件夹结构:
ProjectFolder/images/some images
在同一个文件夹中
ProjectFolder/WEB-INF/classes/com/xyz/here is java file of controller.
如何在控制器中获取图像路径?
请帮忙.
谢谢 :)
最佳答案
如果它的网络上下文可能会有所帮助
原文链接:https://www.f2er.com/spring/432635.htmlInputStream is = null ;
is = request.getSession().getServletContext().getResourceAsStream("/images/someimage.jpg");
或者可能是这样的:
InputStream is = null ;
String realPath = request.getSession().getServletContext().getRealPath("/images/someimage.jpg");
is = new FileInputStream(realPath);