jcmd-hUsage:jcmd or :jcmd-l &a"> What is the importance of jcmd tool in Java 9?-javaTutorial-php.cn
Home> Java> javaTutorial> body text

What is the importance of jcmd tool in Java 9?

PHPz
Release: 2023-09-15 18:21:03
forward
1260 people have browsed it

jcmd工具在Java 9中的重要性是什么?

"jcmd" is the JVMDiagnostictool, which is a command line tool used to target a given JVM locally Run diagnostic commands on the machine. This tool is included in the JDK installation starting from versionJava 7and can be represented by the "%java_home%\bin\jcmd.exe" program file. If we include the "%java_home%\bin" directory in the environment variable "path", we can run the "jcmd -h" command to see the complete list of all directories. Options are as follows

C:\Users\User>jcmd -h Usage: 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
Copy after login

Example

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) { } } }
Copy after login

Output

Free memory: 65454560 Total memory: 67108864
Copy after login

##We can use the "

jcmd -l" command line Output all running JVM machines locally and use thePIDor classmainin the output to identify the JVM.

C:\Users\User>jcmd -l 6108 jdk.jcmd/sun.tools.jcmd.JCmd -l
Copy after login

The above is the detailed content of What is the importance of jcmd tool in Java 9?. For more information, please follow other related articles on the PHP Chinese website!

source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!