MyHost.java



import java.net.InetAddress;

/** 自分が使用中のマシンのマシン名と
    IPアドレスを調べるクラス MyHost */

public class MyHost {

  /** 最初に呼び出されるメソッド */

     public static void main( String argv[] ) {

          try {
                InetAddress myHost = InetAddress.getLocalHost();
                System.out.println( "このマシンのホスト名は "
                                  + myHost.getHostName()
                                  + "、IPアドレスは "
                                  + myHost.getHostAddress()
                                  + " です" );
          }
          catch( Exception e ){
                System.err.println( e.getMessage() );
                System.exit(-1);
          }
     }
}