`
MouseLearnJava
  • 浏览: 466230 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论

获取System Properties的方法

    博客分类:
  • Java
阅读更多

我们可以通过如下两种方式获取System Properties信息:

1. System.getProperties()
2. ManagementFactory.getRuntimeMXBean().getSystemProperties()


ManagementFactory.getRuntimeMXBean().getSystemProperties方法采用System.getProperties()来完成的,如果在本地运行程序去获取某些系统属性的值,结果是一样的。

它们的一个区别,RuntimeMXBean能够去获取远程 VM上的System Properties

ManagementFactory的newPlatformMXBeanProxy方法提供了访问远程VM的方法。可采取如下方式来访问远程VM,参考https://blogs.oracle.com/jmxetc/entry/how_to_retrieve_remote_jvm

      
// Connect to target 
        final JMXConnector connector = JMXConnectorFactory.connect(target);
        
        // Get an MBeanServerConnection on the remote VM.
        final MBeanServerConnection remote = 
                connector.getMBeanServerConnection();
        
        final RuntimeMXBean remoteRuntime = 
                ManagementFactory.newPlatformMXBeanProxy(
                    remote,
                    ManagementFactory.RUNTIME_MXBEAN_NAME,
                    RuntimeMXBean.class);




RuntimeMXBean的具体内容如下:

/*
 * Copyright 2003-2005 Sun Microsystems, Inc.  All Rights Reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.  Sun designates this
 * particular file as subject to the "Classpath" exception as provided
 * by Sun in the LICENSE file that accompanied this code.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
 * CA 95054 USA or visit www.sun.com if you need additional information or
 * have any questions.
 */

package sun.management;

import java.lang.management.RuntimeMXBean;

import java.util.List;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;
import java.util.Properties;
import javax.management.openmbean.CompositeData;
import javax.management.openmbean.CompositeDataSupport;
import javax.management.openmbean.CompositeType;
import javax.management.openmbean.OpenType;
import javax.management.openmbean.SimpleType;
import javax.management.openmbean.OpenDataException;

/**
 * Implementation class for the runtime subsystem.
 * Standard and committed hotspot-specific metrics if any.
 *
 * ManagementFactory.getRuntimeMXBean() returns an instance
 * of this class.
 */
class RuntimeImpl implements RuntimeMXBean {

    private final VMManagement jvm;
    private final long vmStartupTime;

    /**
     * Constructor of RuntimeImpl class.
     */
    RuntimeImpl(VMManagement vm) {
        this.jvm = vm;
        this.vmStartupTime = jvm.getStartupTime();
    }

    public String getName() {
        return jvm.getVmId();
    }

    public String getManagementSpecVersion() {
        return jvm.getManagementVersion();
    }

    public String getVmName() {
        return jvm.getVmName();
    }

    public String getVmVendor() {
        return jvm.getVmVendor();
    } 

    public String getVmVersion() {
        return jvm.getVmVersion();
    }

    public String getSpecName() {
        return jvm.getVmSpecName();
    }

    public String getSpecVendor() {
        return jvm.getVmSpecVendor();
    }

    public String getSpecVersion() {
        return jvm.getVmSpecVersion();
    }

    public String getClassPath() {
        return jvm.getClassPath();
    }

    public String getLibraryPath() {
        return jvm.getLibraryPath();
    }

    public String getBootClassPath() {
        if (!isBootClassPathSupported()) {
            throw new UnsupportedOperationException(
                "Boot class path mechanism is not supported");
        }
        ManagementFactory.checkMonitorAccess();
        return jvm.getBootClassPath();
    }

    public List<String> getInputArguments() {
        ManagementFactory.checkMonitorAccess();
        return jvm.getVmArguments();
    }

    public long getUptime() {       
        long current = System.currentTimeMillis();

        // TODO: If called from client side when we support
        // MBean proxy to read performance counters from shared memory, 
        // need to check if the monitored VM exitd.
        return (current - vmStartupTime);
    }

    public long getStartTime() {
        return vmStartupTime;
    }

    public boolean isBootClassPathSupported() {
        return jvm.isBootClassPathSupported();
    }

    public Map<String,String> getSystemProperties() {
        Properties sysProps = System.getProperties();
        Map<String,String> map = new HashMap<String, String>();

        // Properties.entrySet() does not include the entries in
        // the default properties.  So use Properties.stringPropertyNames()
        // to get the list of property keys including the default ones.
        Set<String> keys = sysProps.stringPropertyNames();
        for (String k : keys) {
            String value = sysProps.getProperty(k);
            map.put(k, value);
        }

        return map;
    }
}



如果博友知道两者的其它区别,也请指出,谢谢。
0
7
分享到:
评论
1 楼 东方胜 2013-08-19  

相关推荐

    Android 应用获取SystmeProperity的两种方式

    在Android开发中,有时我们需要获取系统的属性值,例如设备型号、系统版本等,这些属性通常存储在`SystemProperties`中。本篇文章将详细介绍非系统应用如何通过Java层和Native层两种方式来获取`SystemProperties`的...

    Windows 7 System Properties Logo Changer

    《Windows 7 System Properties Logo Changer:个性化你的操作系统体验》 Windows 7是微软公司推出的一款深受用户喜爱的操作系统,其稳定性和用户友好性在当时备受赞誉。然而,对于追求个性化的用户来说,系统默认...

    Python实现读取Properties配置文件的方法

    实际使用这个类时,首先确定配置文件的路径,然后创建`Properties`类的实例,最后调用`getProperties`方法获取配置字典: ```python import sys fileName = sys.path[0] + '\\' + 'system.properties' p = ...

    [android平台][获取手机IMSI、IMEI、序列号及手机号的用法]

    使用 `android.os.SystemProperties` 类可以获取运营商 SIM 卡的 IMSI 号,代码如下: ```java String IMSI = android.os.SystemProperties.get(android.telephony.TelephonyProperties.PROPERTY_IMSI); ``` 2. ...

    android平台获取手机IMSI,IMEI ,序列号,和 手机号的方法

    需要注意的是,在 Android 8.0 及更高版本中, SystemProperties.get() 方法已经被废弃,需要使用 TelephonyManager.getDeviceId() 方法来获取 IMEI 号。 3. 获取序列号 Android 设备的序列号可以通过多种方法来...

    Control Panel - System Properties

    标题“Control Panel - System Properties”指的是Windows操作系统中的“控制面板”功能,特别是“系统属性”这一部分。在Windows中,“控制面板”是一个集中管理计算机设置的界面,而“系统属性”则是用户查看和...

    java 读properties 文件六种方法

    这是最直接的方法,通过创建`Properties`对象并调用其`load()`方法,传入一个`InputStream`实例来加载Properties文件。例如: ```java import java.io.FileInputStream; import java.io.InputStream; import java....

    API读取Properties文件的六种方法

    ### API读取Properties文件的六种方法 在Java开发中,`Properties` 文件常用于存储配置信息,如数据库连接字符串、应用配置等。通过API读取这些文件是开发者经常遇到的任务之一。本文将详细介绍六种使用J2SE API...

    写入properties文件时间并且读出时间

    它提供了加载、存储、设置和获取属性的方法。下面将详细讲解如何操作: 1. **写入时间到properties文件**: - 首先,创建一个`Properties`对象。 - 使用`SimpleDateFormat`或`java.time.format.DateTimeFormatter...

    读取Properties文件的六种方法

    ### 读取Properties文件的六种方法 在Java开发中,`Properties`文件是一种非常常见的配置文件格式,它主要用于存储程序的各种配置信息。通过不同方式读取这些配置信息,可以提高程序的灵活性与可维护性。本文将详细...

    MIDP_System_Properties_v1_2_en

    而"SystemProperties.zip"可能是一个示例代码库或者补充材料,包含了一些演示如何访问和使用这些系统属性的代码片段。通过解压并研究这个文件,开发者可以直接学习到如何在实际项目中应用这些概念。 综上所述,了解...

    Java读取Properties文件的六种方法

    ### Java读取Properties文件的六种方法 在Java开发中,`Properties` 文件常用于存储配置信息,如数据库连接字符串、应用配置等。正确且高效地读取这些配置文件对于程序运行至关重要。本文将详细介绍六种不同的方法...

    怎样读取properties文件内容

    一旦`properties`文件被正确加载到`Properties`对象中,就可以通过`getProperty()`方法来获取指定键的值了。例如,上面的示例代码中通过`System.out.println(props.getProperty("dx.server.host"));`输出了`dx....

    获取Android手机或平板唯一识别号(imei或meid).rar

    在这个例子中,我们首先通过Context的getSystemService方法获取到TelephonyManager的实例,然后调用其getDeviceId方法来获取IMEI。如果设备不支持IMEI或者没有权限,该方法可能返回null或者空字符串。 对于MEID,...

    利用Java的Properties 类读取配置文件信息

    `Properties`类还提供了其他方法,如`propertyNames()`用于获取所有键的枚举,`list(PrintStream out)`用于打印所有键值对到控制台,以及`keys()`和`values()`方法分别获取所有键和值的集合。 8. **注意** - `....

    java读取.properties配置文件的几种方法

    在这个例子中,我们首先创建一个`Properties`对象,然后通过`FileInputStream`打开配置文件,使用`load()`方法加载属性,最后用`getProperty()`获取指定键的值。 2. 使用`ResourceBundle`类 `ResourceBundle`类...

    java读取properties文件

    在这个例子中,我们创建了一个`FileInputStream`来打开`config.properties`文件,然后通过`Properties`对象的`load()`方法加载文件内容。`getProperty()`方法用于获取特定键对应的值。 2. 处理编码问题: 默认情况...

    c#操作properties,读写配置文件

    C#提供了一种简单有效的方法来操作配置文件中的属性(Properties),即通过`System.Configuration`命名空间下的`ConfigurationManager`类以及`Properties.Settings`类。 #### 一、基础知识介绍 1. **配置文件**: 在...

    用JAVA轻松操作properties文件

    `java.util.Properties`是Java集合框架的一部分,它继承自`Hashtable`类,并添加了一些特定于处理`properties`文件的方法。主要方法包括: - `load(InputStream inStream)`:从输入流中加载属性列表。 - `store...

    多种方式读取Properties代码示例

    本文将详细介绍多种读取Properties文件的方法,并提供相关的代码示例。 1. **使用Properties类加载文件** 最常用的方式是通过`java.util.Properties`类来读取`.properties`文件。以下是一个简单的示例: ```java ...

Global site tag (gtag.js) - Google Analytics