linux系统
ps -ef|grep java
jmap -dump:format=b,file=/tmp/dump.dat 21711
windows系统
netstat –aon | findstr “8080”
端口号对应的进程
tasklist | findstr “3500”
查找进程详细信息
jmap -dump:live,file=<pid>_.hprof 21204
http://blog.csdn.net/alane1986/article/details/6520095
http://www.aichengxu.com/other/10918986.htm