J2SE

Java Forever Video

This is a funny video exploring family drama regarding the battle between Java & Microsoft.

Have a look at it start ROFL (Rolling On the Floor Laughing).

[youtube=http://www.youtube.com/watch?v=d9JIiCkDyMQ&fs=1&hl=en_US]

Check your Operating System & its version

Free Source Code

Free Source Code

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
Here I have used, ver command one of the DOS commands which returns Name of Operating System and its version.

2. Using Programming

Here we are using a Java Program to find the operating system you are using & its version :
[sourcecode language=”java”]
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]

So, what are you waiting for?
Use it to create various system utilities & have fun.

Find your IP Address

Free Source Code

Free Source Code

Objective :

  • How to find IP address of your computer?
  • How to find IP address by programming?
  • How to find IP address by Java programming?
  • Write a Java program to find IP Address.

Hello guys.

Do you want to find your IP Address?

There are following ways to check / find your IP Address

  1. Using Command prompt.
  2. Using Programming.
1. Using Command Prompt :
  • Open Command Prompt.
  • Type “ipconfig” without quotes & Press Enter. IP Address will be displayed.
2. Using Programming :
Here we are using a Java Program to find the IP Address. The Java Program to find the IP Address is as follows;

[sourcecode language=”java”]

package com.si.java.utility.ip;

import java.net.InetAddress;

/**
*
* Language : Java
* File : IPAddressFinder.java
* Date : Saturday, October 2, 2010
* @author Atul Palandurkar
* Email : atul.palandurkar@gmail.com
* Website : www.shardainfotech.com
*
*/

public class IPAddressFinder
{

public static void main(String[] args)
{
try
{
InetAddress ia = InetAddress.getLocalHost();
String ip = ia.getHostAddress();
System.out.println("Your IP Address :- "+ip);
}
catch (Exception ex)
{
ex.printStackTrace();
}
}
}
[/sourcecode]

The above code can be very useful to find the IP address of your computer, as well as this can be used to find the IP address of the user in internet based applications with a little change in it.
Use it & have fun.
..