将Jcmd或Jstack打印的内容保存到文件

 

jcmd <pid | main class> <command ...|PerfCounter.print|-f file> >> LogFileName.txt

jstack [-options] <pid> >>LogFileName.txt

 

./jcmd 51746 GC.class_histogram >> /root/1.txt

 

Jstack -l PID >> threads.txt

 

上一篇:jstack的使用


下一篇:Java命令学习系列(二)——Jstack