public class OSInfo {
public static void main(String[] args) {
// Get the operating system name
String osName = System.getProperty("os.name");
// Get the operating system version
String osVersion = System.getProperty("os.version");
// Get the operating system architecture
String osArch = System.getProperty("os.arch");
System.out.println("Operating System: " + osName);
System.out.println("Version: " + osVersion);
System.out.println("Architecture: " + osArch);
}
}
/*
run:
Operating System: Linux
Version: 6.6.72+
Architecture: amd64
*/