首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 平面设计 > 图形图像 >

ImageIcon缓存有关问题

2012-10-08 
ImageIcon缓存问题在2BizBox 里面选择Image的时候(比如上传图纸的时候),发现一个这样的问题:第一次上传的

ImageIcon缓存问题
在2BizBox 里面选择Image的时候(比如上传图纸的时候),发现一个这样的问题:


第一次上传的时候,选择一个 test.png 文件。

然后把test.png 删除,然后重新建一个 test.png的文件,再次选择test.png的时候,得到的总是前一个图片。 但是如果重新登录就没有这个问题了,所以怀疑是ImageIcon 的缓存造成的。 所以改了一把方法:


 public static ImageIcon getSelectedImageIcon(Component parent) {File file = getSelectedImageFile(parent);if (file != null) {try {ImageIcon icon = new ImageIcon(file.toURI().toURL());icon.getImage().flush();icon = new ImageIcon(file.toURI().toURL());return icon;} catch (MalformedURLException ex) {ex.printStackTrace();}}return null;}




每次拿到图片后,都flush 一下,然后在重新拿。 不过这样的问题是导致每次拿了两次。

或者在每个用到的地方,调用flush方法,不过这样就会要改的地方很多。

热点排行