Computer >> 컴퓨터 >  >> 프로그램 작성 >> Java

Java 9에서 jcmd 도구의 중요성은 무엇입니까?


"jcmd "는 JVM 진단 입니다. 도구는 로컬 시스템에서 주어진 JVM에 대해 진단 명령을 실행하는 명령줄 도구입니다. 이 도구는 Java 7 이후로 JDK 설치에 포함되었습니다. 버전이며 "%java_home%\bin\jcmd.exe로 나타낼 수 있습니다. " 프로그램 파일입니다. "%java_home%\bin이 있는 경우 " 디렉토리가 "경로" 환경 변수에 포함되어 있으면 "jcmd -h를 실행할 수 있습니다. " 명령은 아래와 같이 모든 옵션의 전체 목록을 봅니다.

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

예시

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: 65454560
Total memory: 67108864


"jcmd -l " 명령을 사용하여 로컬 시스템에서 실행 중인 모든 JVM을 나열한 다음 PID 를 사용합니다. 또는 클래스 메인 출력에서 JVM을 식별합니다.

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