最近在用用java写一个图片上传的程序的时候,一直都没有成功。我想实现的是我上传一个图片到当前工程项目下的images文件夹下覆盖掉原来的,然后刷新页面,页面上的图片就自动改变为新的图片。可是图片被覆盖掉后,刷新页面还是显示原来的图片。
想可能是和缓存有关系,在网上找了好多清除缓存的方法,仍然不行。主要有两种,一种是清除浏览器的缓存,或者读取图片的时候在后面加一个随机数,如:
<img alt="" src="<%=request.getContextPath()%>/images/345.jpg?r=<%=new Date().getTime()%>" />
没有效果。还有的建议是清楚服务器缓存,可是按照方法去做了,还是不行。
最后,直接将文件上传到服务器上,成功。图片上传程序如下:
private void changeImage(String imageName,int width, int height)throws Exception{
Image image;
String targetDirectory = ServletActionContext.getServletContext().getRealPath("/images");
System.out.println(targetDirectory);//指定上传到服务器的路径
try {
if(imageName.equalsIgnoreCase("234.gif")){
image = ImageIO.read(this.image1);
}else if(imageName.equalsIgnoreCase("123.jpg")){
image = ImageIO.read(this.image2);
}else{
image = ImageIO.read(this.image3);
}
//int width = image.getWidth(null) ;
//int height = image.getHeight(null) ;
File target = new File(targetDirectory, imageName);
BufferedImage bufferedImage = new BufferedImage(width,height,BufferedImage.TYPE_INT_BGR) ;
Graphics2D g2 = (Graphics2D)bufferedImage.getGraphics();
//g2.setBackground(Color.WHITE);
g2.drawImage(image, 0, 0, width, height,null) ;
FileOutputStream fos = new FileOutputStream(target) ;
JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(fos) ;
encoder.encode(bufferedImage) ;
//System.out.println("转换成功...");
fos.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
想可能是和缓存有关系,在网上找了好多清除缓存的方法,仍然不行。主要有两种,一种是清除浏览器的缓存,或者读取图片的时候在后面加一个随机数,如:
<img alt="" src="<%=request.getContextPath()%>/images/345.jpg?r=<%=new Date().getTime()%>" />
没有效果。还有的建议是清楚服务器缓存,可是按照方法去做了,还是不行。
最后,直接将文件上传到服务器上,成功。图片上传程序如下:
private void changeImage(String imageName,int width, int height)throws Exception{
Image image;
String targetDirectory = ServletActionContext.getServletContext().getRealPath("/images");
System.out.println(targetDirectory);//指定上传到服务器的路径
try {
if(imageName.equalsIgnoreCase("234.gif")){
image = ImageIO.read(this.image1);
}else if(imageName.equalsIgnoreCase("123.jpg")){
image = ImageIO.read(this.image2);
}else{
image = ImageIO.read(this.image3);
}
//int width = image.getWidth(null) ;
//int height = image.getHeight(null) ;
File target = new File(targetDirectory, imageName);
BufferedImage bufferedImage = new BufferedImage(width,height,BufferedImage.TYPE_INT_BGR) ;
Graphics2D g2 = (Graphics2D)bufferedImage.getGraphics();
//g2.setBackground(Color.WHITE);
g2.drawImage(image, 0, 0, width, height,null) ;
FileOutputStream fos = new FileOutputStream(target) ;
JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(fos) ;
encoder.encode(bufferedImage) ;
//System.out.println("转换成功...");
fos.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}