System.getProperty()方法是用來獲取指定的系統屬性的值。它接受一個字符串參數,參數是需要獲取的系統屬性的鍵。下面是使用System.getProperty()方法的示例:
public class Main {
public static void main(String[] args) {
// 獲取java版本號
String javaVersion = System.getProperty("java.version");
System.out.println("Java Version: " + javaVersion);
// 獲取操作系統名稱
String osName = System.getProperty("os.name");
System.out.println("OS Name: " + osName);
// 獲取用戶的當前工作目錄
String userDir = System.getProperty("user.dir");
System.out.println("User Directory: " + userDir);
}
}
運行上述代碼將輸出當前Java版本號、操作系統名稱和用戶的當前工作目錄。請注意,System.getProperty()方法返回的是一個字符串,如果指定的系統屬性不存在,則返回null。