All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.dromara.hutool.extra.management.JvmInfo Maven / Gradle / Ivy

There is a newer version: 6.0.0.M3
Show newest version
/*
 * Copyright (c) 2013-2024 Hutool Team and hutool.cn
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.dromara.hutool.extra.management;

import org.dromara.hutool.core.util.SystemUtil;

import java.io.Serializable;

/**
 * 代表Java Virtual Machine Implementation的信息。
 */
public class JvmInfo implements Serializable{
	private static final long serialVersionUID = 1L;

	private final String JAVA_VM_NAME = SystemUtil.get("java.vm.name", false);
	private final String JAVA_VM_VERSION = SystemUtil.get("java.vm.version", false);
	private final String JAVA_VM_VENDOR = SystemUtil.get("java.vm.vendor", false);
	private final String JAVA_VM_INFO = SystemUtil.get("java.vm.info", false);

	/**
	 * 取得当前JVM impl.的名称(取自系统属性:{@code java.vm.name})。
	 *
	 * 

* 例如Sun JDK 1.4.2:{@code "Java HotSpot(TM) Client VM"} *

* * @return 属性值,如果不能取得(因为Java安全限制)或值不存在,则返回{@code null}。 * */ public final String getName() { return JAVA_VM_NAME; } /** * 取得当前JVM impl.的版本(取自系统属性:{@code java.vm.version})。 * *

* 例如Sun JDK 1.4.2:{@code "1.4.2-b28"} *

* * @return 属性值,如果不能取得(因为Java安全限制)或值不存在,则返回{@code null}。 * */ public final String getVersion() { return JAVA_VM_VERSION; } /** * 取得当前JVM impl.的厂商(取自系统属性:{@code java.vm.vendor})。 * *

* 例如Sun JDK 1.4.2:{@code "Sun Microsystems Inc."} *

* * @return 属性值,如果不能取得(因为Java安全限制)或值不存在,则返回{@code null}。 * */ public final String getVendor() { return JAVA_VM_VENDOR; } /** * 取得当前JVM impl.的信息(取自系统属性:{@code java.vm.info})。 * *

* 例如Sun JDK 1.4.2:{@code "mixed mode"} *

* * @return 属性值,如果不能取得(因为Java安全限制)或值不存在,则返回{@code null}。 * */ public final String getInfo() { return JAVA_VM_INFO; } /** * 将Java Virtual Machine Implementation的信息转换成字符串。 * * @return JVM impl.的字符串表示 */ @Override public final String toString() { final StringBuilder builder = new StringBuilder(); ManagementUtil.append(builder, "JavaVM Name: ", getName()); ManagementUtil.append(builder, "JavaVM Version: ", getVersion()); ManagementUtil.append(builder, "JavaVM Vendor: ", getVendor()); ManagementUtil.append(builder, "JavaVM Info: ", getInfo()); return builder.toString(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy