熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Java編程 >> Java核心技術 >> 正文

Java通過System.getProperties()獲取系統參數

2022-06-13   來源: Java核心技術 

  Properties props=SystemgetProperties(); //系統屬性

  Systemoutprintln(Java的運行環境版本+propsgetProperty(javaversion));

  Systemoutprintln(Java的運行環境供應商+propsgetProperty(javavendor));

  Systemoutprintln(Java供應商的URL+propsgetProperty(javavendorurl));

  Systemoutprintln(Java的安裝路徑+propsgetProperty(javahome));

  Systemoutprintln(Java的虛擬機規范版本+propsgetProperty(javavmspecificationversion));

  Systemoutprintln(Java的虛擬機規范供應商+propsgetProperty(javavmspecificationvendor));

  Systemoutprintln(Java的虛擬機規范名稱+propsgetProperty(javavmspecificationname));

  Systemoutprintln(Java的虛擬機實現版本+propsgetProperty(javavmversion));

  Systemoutprintln(Java的虛擬機實現供應商+propsgetProperty(javavmvendor));

  Systemoutprintln(Java的虛擬機實現名稱+propsgetProperty(javavmname));

  Systemoutprintln(Java運行時環境規范版本+propsgetProperty(javaspecificationversion));

  Systemoutprintln(Java運行時環境規范供應商+propsgetProperty(javaspecificationvender));

  Systemoutprintln(Java運行時環境規范名稱+propsgetProperty(javaspecificationname));

  Systemoutprintln(Java的類格式版本號+propsgetProperty(javaclassversion));

  Systemoutprintln(Java的類路徑+propsgetProperty(javaclasspath));

  Systemoutprintln(加載庫時搜索的路徑列表+propsgetProperty(javalibrarypath));

  Systemoutprintln(默認的臨時文件路徑+propsgetProperty(javaiotmpdir));

  Systemoutprintln(一個或多個擴展目錄的路徑+propsgetProperty(javaextdirs));

  Systemoutprintln(操作系統的名稱+propsgetProperty(osname));

  Systemoutprintln(操作系統的構架+propsgetProperty(osarch));

  Systemoutprintln(操作系統的版本+propsgetProperty(osversion));

  Systemoutprintln(文件分隔符+propsgetProperty(fileseparator));   //在 unix 系統中是"/"

  Systemoutprintln(路徑分隔符+propsgetProperty(pathseparator));   //在 unix 系統中是":"

  Systemoutprintln(行分隔符+propsgetProperty(lineseparator));   //在 unix 系統中是"/n"

  Systemoutprintln(用戶的賬戶名稱+propsgetProperty(username));

  Systemoutprintln(用戶的主目錄+propsgetProperty(userhome));

  Systemoutprintln(用戶的當前工作目錄+propsgetProperty(userdir));

  Systemoutprintln(用戶的當前工作目錄+propsgetProperty(userdir));


From:http://tw.wingwit.com/Article/program/Java/hx/201311/25853.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.