Java中的System.setProperty()方法用于設置指定的系統屬性。
語法:
public static String setProperty(String key, String value)
參數說明:
key:要設置的系統屬性的名稱。
value:要設置的系統屬性的值。
返回值:
使用示例:
public class Test {
public static void main(String[] args) {
// 設置系統屬性
System.setProperty("myProperty", "myValue");
// 獲取系統屬性
String property = System.getProperty("myProperty");
System.out.println(property);
}
}
運行結果:
myValue
通過System.setProperty()方法設置的系統屬性可以在程序運行過程中被訪問和修改。可以使用System.getProperty()方法獲取已設置的系統屬性的值。
注意事項:
系統屬性是全局的,對整個Java虛擬機實例有效,不僅僅是當前程序。
設置的系統屬性在程序結束后會被自動清除。
系統屬性的名稱是大小寫敏感的。
如果要使用System.setProperty()方法設置的系統屬性在程序運行期間一直有效,可以將該方法放在程序的入口方法中。