System.setProperty()方法用于設置Java系統屬性。
語法:
public static String setProperty(String key, String value)
參數:
key:要設置的系統屬性的鍵。
value:要設置的系統屬性的值。
返回值:
示例:
public class Main {
public static void main(String[] args) {
// 設置系統屬性
System.setProperty("myKey", "myValue");
// 獲取系統屬性
String property = System.getProperty("myKey");
System.out.println(property); // 輸出:myValue
}
}
在示例中,首先使用System.setProperty()
方法設置了一個名為"myKey"的系統屬性,值為"myValue"。然后使用System.getProperty()
方法獲取了該系統屬性的值,并將其打印輸出。