这个问题是我为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
萨米特
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. AllSoftCache
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来实现.