Howto print java class garbage collection events?

前端 未结 4 1800
感动是毒
感动是毒 2020-12-17 21:37
java version \"1.5.0_14\"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_14-b03)
Java HotSpot(TM) Server VM (build 1.5.0_14-b03, mixed mode)

I\'

4条回答
  •  独厮守ぢ
    2020-12-17 22:16

    To trace GC activity add this to java command:

    -verbose:gc -XX:+PrintGCTimeStamps -XX:+PrintGCDetails

    NPE that you are getting is probably you passing null value.

提交回复
热议问题