c:\users\user>jcmd -husage: jcmd or: jcmd -l or: jcmd -h command must be a valid jcmd command for the selected jvm. use the command "help" to see which commands are available. if the pid is 0, commands will be sent to all java processes. the main class argument will be used to match (either partially or fully) the class used to start java. if no options are given, lists java processes (same as -l). perfcounter.print display the counters exposed by this process -f read and execute commands from the file -l list jvm processes on the local machine -h this help
示例public class jcmdtooltest { public static void main(string args[]) { runtime runtime = runtime.getruntime(); system.out.println("free memory: " + runtime.freememory()); system.out.println("total memory: " + runtime.totalmemory()); try { thread.sleep(5000); } catch(interruptedexception e) { } }}
输出free memory: 65454560total memory: 67108864
我们可以使用“jcmd -l”命令列出本地上所有正在运行的 jvm机器,然后使用输出中的 pid 或类 main 来识别 jvm。
c:\users\user>jcmd -l6108 jdk.jcmd/sun.tools.jcmd.jcmd -l
以上就是jcmd工具在java 9中的重要性是什么?的详细内容。