Start Search Contents Index Links About
ShowIP.java
/*
 * Author: Havard Rast Blok
 * E-mail:  
 * Web   : www.rememberjava.com
 */

import java.net.*;

/**
 *
 * Shows your IP address, if any.
 */
public class ShowIP
{
  
  public static void main(String[] args)
  {
    InetAddress ip;
     
    try
    
      ip = InetAddress.getLocalHost();
      System.out.println("Your IP address: "+ip.getHostAddress());
    }
    catchUnknownHostException e )
    {
      System.out.println("No IP address found: "+e);
    }
  }
  
}


site: Håvard Rast Blok
mail:
updated: 27 July 2007