`
rafale35
  • 浏览: 20070 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论

InetAddressTest 打印出指定网址的IP地址

阅读更多

 

 

package com.net.InetAddressTest;

import java.net.*;

/**
 * This program demonstrates the InetAddress class. Supply a host name as command line argument, or
 * run without command line arguments to see the address of the local host.
 * @version 1.01 2001-06-26
 * @author Cay Horstmann
 */
public class InetAddressTest
{
   public static void main(String[] args)
   {
      try
      {
         if (args.length > 0)
         {
            String host = args[0];
            InetAddress[] addresses = InetAddress.getAllByName(host);
            for (InetAddress a : addresses)
               System.out.println(a);
         }
         else
         {
            InetAddress localHostAddress = InetAddress.getLocalHost();
            System.out.println(localHostAddress);
         }
      }
      catch (Exception e)
      {
         e.printStackTrace();
      }
   }
}

 

 

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics