可能重复:
Tomcat 不返回图像资源
我有这个 java 代码,它在 /images 目录中存储一个新图像
BufferedImage new_image = ImageIO.read(image);
File outputfile = new File("/prova/WebContent/images/image.png");
ImageIO.write(new_image, "png", outputfile);
out.println("<body>" +
"<img src=\"/prova/images/image.png\">" +
"</body>");
但我有一个问题。之后,我需要在生成的 JSP 中显示我的图像。但它不会返回我的图像。只有当我在 Eclipse 中刷新我的项目时,它才会给我图像。
任何想法自动解决?