Home Java Java-get-example Java example program to get the operating system's version



Java example program to get the operating system's version
Posted on: October 24, 2008 at 12:00 AM
You can check your current system's operating system version by the java code also. For this purpose you have to use the System's property "os.version".

Java example program to get the operating system's version

     

java get OS version

You can check your current system's operating system version by the java code also. For this purpose you have to use the System's property "os.version". Its very simple to know your operating system's version in java. This program displays how one can use the System.getProperty() method to get Operating System Version.

In this example java program we have fetched the operating system's version by using the System.getProperty("os.version").

String osVersion= System.getProperty("os.version");

Above line of code gets the operating system's version and stores version in a string osVersion. Here is the full source code of GetOSVersion.java as follows:

GetOSVersion.java

import java.util.*;
import java.lang.*;
import java.net.*;

public class GetOSVersion
  {
  public static void main(String args[]) {
  try{
  String osVersion= System.getProperty("os.version");
  System.out.println("Operating system version =>"+ osVersion);
  }catch (Exception e){
  System.out.println("Exception caught ="+e.getMessage());
  }
  }
}

Output of our program :

C:\javaexamples>javac GetOSVersion.java

C:\javaexamples>java GetOSVersion
Operating system version =>5.0

Download Source Code

Related Tags for Java example program to get the operating system's version:
javaciopropertymethodgetversionsystemdisplaythisoperasimplecheckforprogramtoramposeratingitrsilscansplusepeimcurrentinnomntplayoperatingoscaoperatingosjispemmehowprosyssspsodisplaysatkishamplpropercodcodertropesimvassrenthavstatidisplsopleplpropprodeonogro


More Tutorials from this section

Ask Questions?    Discuss: Java example program to get the operating system's version  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.