java.vm是什么文件(java)

java获取vm运行参数TogetthenameofrunningVM(VirtualMachine)inJava,weusethegetProperties()method,whichisdefinedinSystemclass,whilecallingthemethod,weneedtopassthepropertynameto…

大家好,又见面了,我是你们的朋友全栈君。

java获取vm运行参数

To get the name of running VM (Virtual Machine) in Java, we use the getProperties() method, which is defined in System class, while calling the method, we need to pass the property name to get the name of running Java VM.

获取Java中正在运行的VM(虚拟机)的名称 ,我们使用System类中定义的getProperties()方法 ,在调用该方法时,我们需要传递属性名称以获取正在运行的Java VM的名称。

The property to get the name of running Java VM is: “java.vm.name”

获取正在运行的Java VM的名称的属性是: “ java.vm.name”

The method call is: System.getProperties(“java.vm.name”);

方法调用为: System.getProperties(“ java.vm.name”);

Java code to get and print the name of running Java VM

Java代码获取并打印正在运行的Java VM的名称

// Java program to demonstrate the example of 
// getProperties() method of System Class

import java.lang.*;
import java.util.Properties;

public class Main {
   
   
    public static void main(String[] args) {
   
   
        String vm_name = null;
        vm_name = System.getProperty("java.vm.name");
        System.out.println("Running Java vm is: " + vm_name);
    }
}

Output

输出量

Running Java vm is: Java HotSpot(TM) 64-Bit Server VM


翻译自: https://www.includehelp.com/java/how-to-get-the-name-of-running-java-vm-in-java.aspx

java获取vm运行参数

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/127980.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号