Objective :
- How to check your operating system by programming?
- How to check your operating system by Java programming?
- Write Java program to check operating system & its version
Hi folks,
Hey guys, if you want to know which operating system you are using & its version, there are 2 ways to do it as follows;
- Using Command Prompt
- Using Programming
1. Using Command Prompt
- Go to Start Menu
- Go to Run
- Type cmd & press Enter/return. Command Prompt will open.
- Type ver & press Enter/return, you will get the Name of your OS & its Version that you are using
2. Using Programming
package com.si.java.utility.os;
/**
*
* Language : Java
* File : MyOS.java
* Date : Tuesday, October 5, 2010
* @author Atul Palandurkar
* Email : atul.palandurkar@gmail.com
* Website : www.shardainfotech.com
* Blog : http://atulpalandurkar.wordpress.com
*
*/
public class MyOS
{
public static void main(String[] arg)
{
//To find the name of operating system.
String myOS = System.getProperty("os.name");
System.out.println("Operating System : " + myOS);
//To find the version of operating system.
String myOSVersion = System.getProperty("os.version");
System.out.println("Version : " + myOSVersion);
}
}
[/sourcecode]
Thanks a lot Aatul for this. For many days i was looking for this for my engineering project & i was very much in need of it as i was not getting any clue for how to find the os? Really thanks a lot.
Thanks a lot Raj!