我有这个小问题,我看到不可能在我的控制台加载图片,我不知道如何解决这个问题。
我正在从数据库中获取我的图像名称,作为控制器中的字符串,仅是名称,类似于“image.jpg”,它存储在我的文件夹“images”中。
这是我的jsp文件:
<c:if test="${ !(post.cover == 'empty')}">
<div class="imgPub">
<img src="Assets/images/${post.cover }">
</div>
</c:if>
在我的检查器中,我可以看到整个src都写得很清楚,但旁边有一条消息说无法加载图像。
任何帮助都将不胜感激。
最佳答案
HttpServlet将完成这项工作。
使用:
youraddress.xxx/images/filename.png地址
这很重要@WebServlet(“/images/*”)
它将自动引导到路径中定义的文件夹,并根据名称检索图像。
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.File;
import java.io.IOException;
import java.nio.file.Files;
@WebServlet("/images/*")
public class ImageServlet extends HttpServlet {
public static final String PATH = "C:/"
/*
linux
public static final String PATH = "/home/images/"
*/
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
String filename = request.getPathInfo().substring(1);
File file = new File(PATH,filename);
response.setHeader("Content-Type", getServletContext().getMimeType(filename));
response.setHeader("Content-Length",String.valueOf(file.length()));
response.setHeader("Content-Disposition","inline; filename=\""+filename +"\"");
Files.copy(file.toPath(),response.getOutputStream());
}
}
关于java - 无法在jsp中加载图片?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/47783878/