System

Determine Operating System with System

This is an example of how to determine the Operating System with System class. The System class, that contains several useful class fields and methods. This class cannot be instantiated. Determining the Operating System with System class implies that you should:

  • Use the getProperty(String key), for the os.name, os.version and os.arch keys. This method gets the system property indicated by the specified key. If there is no current set of system properties, a set of system properties is first created and initialized.

Let’s take a look at the code snippet that follows:

package com.javacodegeeks.snippets.core;

public class DetermineOperatingSystemWithSystem {
	
	public static void main(String[] args) {
		
		String osName = System.getProperty("os.name");
		System.out.println("OS Name: " + osName);
		
		String osVersion = System.getProperty("os.version");
		System.out.println("OS Version: " + osVersion);
		
		String osArch = System.getProperty("os.arch");
		System.out.println("OS Architecture: " + osArch);
		
	}

}

Output:

OS Name: Windows Vista
OS Version: 6.1
OS Architecture: x86

 
This was an example of how to determine the Operating System with System class in Java.

Byron Kiourtzoglou

Byron is a master software engineer working in the IT and Telecom domains. He is an applications developer in a wide variety of applications/services. He is currently acting as the team leader and technical architect for a proprietary service creation and integration platform for both the IT and Telecom industries in addition to a in-house big data real-time analytics solution. He is always fascinated by SOA, middleware services and mobile development. Byron is co-founder and Executive Editor at Java Code Geeks.
Subscribe
Notify of
guest

This site uses Akismet to reduce spam. Learn how your comment data is processed.

0 Comments
Inline Feedbacks
View all comments
Back to top button