jvm GC日志输出

  • Post author:
  • Post category:其他



public class GcTest {

/**
* [color=red]-Xloggc:d:\gc.log[/color] -Xms10m -Xmx10m
* @param args
* @throws InterruptedException
*/
public static void main(String[] args) throws InterruptedException {
while(true){
Thread.sleep(1000);
byte[] _byte= new byte[1024*1024*6];
System.err.println(_byte);
}

}
}



版权声明:本文为iteye_1359原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。