Deflater/Inflater如使用不当,将有可能造成native memory leak

Deflater/Inflater如使用不当,将有可能造成native memory leak,下面是一段示例的代码:

import java.util.zip.*;

用-Xmn10m运行上面的代码,可以看到即使在触发了minor gc和full gc后,Java进程占用的地址空间也不会降下去,而当主动调用deflater.end后,再次运行上面的代码,则可看到Java进程占用的地址空间就比较少了,因此在使用Deflater/Inflater时,一定要记得在不需要用了时主动的调用下end方法,就像使用FileInputStream之类的一样。
在Sun官方网站上报告的bug如下:
http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6734186
http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4797189

public class Bug {
public static void main( String args[] ) throws Exception{
for(int i=0;i<100;i++){
new Thread(new Runnable(){
public void run(){
for(int i=0;i<200;i++){
Deflater deflater = new Deflater( 9, true );
//deflater.end();
}
byte[] bytes1=new byte[1024*512];
byte[] bytes2=new byte[1024*512];
byte[] bytes3=new byte[1024*512];
byte[] bytes4=new byte[1024*512];
byte[] bytes5=new byte[1024*512];
byte[] bytes6=new byte[1024*512];
byte[] bytes7=new byte[1024*512];
byte[] bytes8=new byte[1024*512];
}
}).start();
Thread.sleep(1);
}
Thread.sleep(30000);
}
}

你可能感兴趣的:(JAVA)