0

我有这个 java servlet Thumbnail.do,每次您向它发送请求时都会生成一个缩略图。用户必须传递用户想要的图像的文件名和宽度。

我正在使用的代码如下:

public String Image="",ImgWidth="";


Image= "d:\\app\\project\\media\\"+req.getParameter("image");
ImgWidth= req.getParameter("width");
BufferedImage  bufferedimage =ImageIO.read(new File(Image))
float scale=1;
int targetWidth=0;
int targetHeight=0;
Imgwidth=req.getParameter("width");
targetWidth=(int)(bufferedimage.getWidth(null)* scale);
targetHeight=(int)(bufferedimage.getHeight(null)* scale);
if(ImgWitdh == null || ImgWitdh.equlas("")){
ImgWitdh ="0";

}
if(targetWidth>Integer.parseInt(ImgWitdh)&& !ImgWitdh.equals("0")){
targetHeight=Integer.parseInt(ImgWitdh) * targetHeight/targetWidth;
targetWidth=Integer.parseInt(ImgWitdh);
} 

ImageIO.write(createResizedCopy(bufferedimage,targetWidth,
targetHeight,imageOutput,
res.getOutputStream());



 BufferedImage createResizedCopy(Image originalImage, int scaledWidth, int       
 scaledHeight) 
{
 BufferedImage  bufferedimage =new BufferedImage(scaledWidth, scaledHeight,  
 BufferedImage.TYPE_INT_RGB );

 Graphics2D g = scaledBI.createGraphics();
 g.setComposite(AlphaComposite.Src);
 g.drawImage(originalImage,0,0,scaledWidth,scaledHeight,null);
 g.dispose();
}

在我必须显示图像的任何页面上,我都会像这样调用 servlet

<img src="../Thumbnail.do?image="the_image_name"&width=150&target="+Math.random()+"/>

直到一切正常,图像将转换为所述尺寸并显示在页面上。但问题是假设在同一页面上我多次调用 Thumbnail.do 以在页面上的不同位置显示不同的图像,例如

 <div>
 <img src="../Thumbnail.do?image="emp.png"&width=150&target="+Math.random()+"/>
 </div>
 <div>
 <img src="../Thumbnail.do?image="logo.png"&width=50&target="+Math.random()+"/>
 </div.

那么每次我刷新页面时都会发生随机图像显示在 div 标签中。任何人都可以建议为什么以及是否有人知道解决方案

4

1 回答 1

1

如果我正确理解您的问题,问题是浏览器缓存了您的 servlet 中的图像。您可以使用链接中描述的方法在 servlet 代码中禁用缓存:如何防止 Servlet 的结果被缓存

于 2013-08-02T13:04:06.063 回答