Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Java

เครื่องมือ jcmd ใน Java 9 มีความสำคัญอย่างไร


The "jcmd " เป็น JVM วินิจฉัย เครื่องมือซึ่งเป็นเครื่องมือบรรทัดคำสั่งเพื่อเรียกใช้คำสั่งการวินิจฉัยกับ JVM ที่กำหนดบนเครื่องโลคัล เครื่องมือนี้รวมอยู่ในการติดตั้ง JDK ตั้งแต่ Java 7 เวอร์ชันและสามารถแสดงด้วย "%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