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