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]
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]
Ways To download the latest version of Java
Method 1 :
Method 2 :
Objective :
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;
1. Using Command Prompt
2. Using Programming
/**
*
* 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]
Objective :
Hello guys.
Do you want to find your IP Address?
There are following ways to check / find your IP Address
[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]