java – 图像被缓存并吃掉我的堆空间

前端之家收集整理的这篇文章主要介绍了java – 图像被缓存并吃掉我的堆空间前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

这个问题是我为previous question提供的答案的结果.

我被要求使用Eclipse MAT来调查吃掉堆的东西.以下是我的观察(热门消费者):

class sun.awt.SunToolkit                                 333.7 MB
com.tennisearth.service.impl.CacheManagerServiceImpl     136 MB
org.apache.jasper.servlet.JspServlet                     91.5 MB

我已经使用CacheManageServiceImpl解决了这个问题,但需要SunToolkit的帮助.

下面是创建Image对象的代码(内部使用SunToolkit.imgCache)

Image img = new ImageIcon(imagePath).getImage();
int imageWidth = img.getWidth(null);
int imageHeight = img.getHeight(null);

Plz注意,仅创建Image对象以获取图像的宽度/高度,稍后在某些逻辑中需要该宽度/高度.

有没有办法禁用SunToolkit图像缓存?更好的是,有没有办法清除这个缓存?或者有更好的方法可以检索这些信息吗?

BTW供您参考,我使用下面的命令来运行jboss(请注意堆大小参数):

java -Dprogram.name=run.sh -server -Xms256m -Xmx1024m -XX:PermSize=64m -XX:MaxPermSize=256m -verbose:gc -Xloggc:/data1/logs/jboss/GC.log -XX:+HeapDumpOnOutOfMemoryError -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000 -Dorg.apache.catalina.STRICT_SERVLET_COMPLIANCE=false -Djava.net.preferIPv4Stack=true -Djava.library.path=/usr/local/java/jboss-4.2.2.GA/bin/native -Djava.endorsed.dirs=/usr/local/java/jboss-4.2.2.GA/lib/endorsed -classpath /usr/local/java/jboss-4.2.2.GA/bin/run.jar:/usr/local/java/jdk1.6.0_06/lib/tools.jar org.jboss.Main -c default -b 

萨米特

最佳答案
图像缓存似乎是由名为SoftCache的类实现的,其文档说明如下:

A memory-sensitive implementation of the Map interface.

A SoftCache object uses 07001
to implement a memory-sensitive hash map. If the garbage
collector determines at a certain point in time that a value object in a
SoftCache entry is no longer strongly reachable,then it may
remove that entry in order to release the memory occupied by the value
object. All SoftCache objects are guaranteed to be completely
cleared before the virtual machine will throw an
OutOfMemoryError.

所以我不担心这个缓存占用的内存,因为当其他地方需要内存时它会被自动清除.

编辑:在SyntaxT3rr0r阅读评论后,我认为在图像上调用flush仍然是值得的.如果这是一个larget方法的一部分,你也可以将image设置为null或重构,以便它更快地超出范围.

另一种可能性是尝试使用ImageIO Api检索宽度和高度.这应该可以通过获得ImageReader for the image type来实现.

原文链接:https://www.f2er.com/java/437805.html

猜你在找的Java相关文章