zoukankan      html  css  js  c++  java
  • System.getProperty()和getenv()

    System.getproperty(String name) 获取系统属性

    System.getProperties() 获取所有系统属性

    System.getenv(String name) 获取环境变量

    系统属性说明:

    public class test{
        public static void main(String[] args) {
            System.out.println("Java Runtime Environment version = "
                    + System.getProperty("java.version"));
            System.out.println("Java Runtime Environment vendor = "
                    + System.getProperty("java.vendor"));
            System.out.println("Java vendor URL = "
                    + System.getProperty("java.vendor.url"));
            System.out.println("Java installation directory = "
                    + System.getProperty("java.home"));
            System.out.println("Java Virtual Machine specification version = "
                    + System.getProperty("java.vm.specification.version"));
            System.out.println("Java Runtime Environment specification  version = "
                    + System.getProperty("java.specification.version"));
            System.out.println("Java class format version number = "
                    + System.getProperty("java.class.version"));
            System.out.println("Java class path = "
                    + System.getProperty("java.class.path"));
            System.out.println("Operating system name = "
                    + System.getProperty("os.name"));
            System.out.println("Operating system architecture = "
                    + System.getProperty("os.arch"));
            System.out.println("File separator ('/' on UNIX) = "
                    + System.getProperty("file.separator"));
            System.out.println("User's account name = "
                    + System.getProperty("user.name"));
            System.out.println("User's home directory = "
                    + System.getProperty("user.home"));
            System.out.println("User's current working directory = "
                    + System.getProperty("user.dir"));
    }    
    System.out.println(System.getenv("Java_Home"));
  • 相关阅读:
    C++ 面向对象编程3 封装 继承 多态
    C++ 面向对象编程2
    C++ 面向对象编程1
    C++开发环境和基础语法
    RTOS概述
    STM32F4 窗口看门狗(WWDG)
    STM32F407 独立看门狗 (IWDG)
    DHT11温湿度传感器
    Ubuntu20.04安装、配置、卸载QT5.9.9与QT creator以及第一个编写QT程序
    Linux,Ubuntu20.04LTS环境下安装JDK1.8和IDEA2021
  • 原文地址:https://www.cnblogs.com/ConciseAaron/p/4104546.html
Copyright © 2011-2022 走看看