【原創】Java網路程式設計從入門到精通(2):建立InetAddress物件的四個靜態方法

銀河使者發表於2009-03-31

本文為原創,如需轉載,請註明作者和出處,謝謝!

    InetAddress類是Java中用於描述IP地址的類。它在java.net包中。在Java中分別用Inet4AddressInet6Address類來描述IPv4IPv6的地址。這兩個類都是InetAddress的子類。由於InetAddress沒有public的構造方法,因此,要想建立InetAddress物件,必須得依靠它的四個靜態方法。InetAddress可以通過getLocalHost方法得到本機的InetAddress物件,也可以通過getByNamegetAllByNamegetByAddress得到遠端主機的InetAddress物件。

一、getLocalHost方法

使用getLocalHost可以得到描述本機IPInetAddress物件。這個方法的定義如下:

<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gtpublic static InetAddress getLocalHost() throws UnknownHostException

這個方法丟擲了一個UnknownHostException異常,因此,必須在呼叫這個方法的程式中捕捉或丟擲這個異常。下面的程式碼演示瞭如何使用getLocalHost來得到本機的IP和計算機名。

<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gtpackage inet;

import java.net.*;

public class MyInetAddress1
{
    
public static void main(String[] args) throws Exception
    {
        InetAddress localAddress 
= InetAddress.getLocalHost();
        System.out.println(localAddress);        
    }
}

執行結果:

<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gtComputerName/192.168.18.10

InetAddress類中覆蓋了Object類的toString方法,實現如下:

<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gtpublic String toString() 
{
     return ((hostName != null? hostName : ""+ "/" + getHostAddress();
}

從上面的程式碼可以看出,InetAddress方法中的toString方法返回了用“/“隔開的主機名和IP地址。因此,在上面的程式碼直接通過localAddress物件來輸出本機計算機名和IP地址(將物件引數傳入println方法後,println方法會呼叫物件引數的toString方法來輸出結果)。

當本機繫結了多個IP時,getLocalHost只返回第一個IP。如果想返回本機全部的IP,可以使用getAllByName方法。

二、getByName方法

這個方法是InetAddress類最常用的方法。它可以通過指定域名從DNS中得到相應的IP地址。getByName一個String型別引數,可以通過這個引數指定遠端主機的域名,它的定義如下:

<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gtpublic static InetAddress getByName(String host) throws UnknownHostException

如果host所指的域名對應多個IPgetByName返回第一個IP。如果本機名已知,可以使用getByName方法來代替getLocalHost。當host的值是localhost時,返回的IP一般是127.0.0.1。如果host是不存在的域名,getByName將丟擲UnknownHostException異常,如果hostIP地址,無論這個IP地址是否存在,getByName方法都會返回這個IP地址(因此getByName並不驗證IP地址的正確性)。下面程式碼演示瞭如何使用getByName方法:

<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gt  package inet;
  
  
import java.net.*;
  
  
public class MyInetAddress2
  {
      
public static void main(String[] args) throws Exception
      {
          
if (args.length == 0)
              
return;
          String host 
= args[0];
          InetAddress address 
= InetAddress.getByName(host);
          System.out.println(address);
      }
  }

  •  測試1:遠端主機www.csdn.net

執行如下命令:

<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gtjava inet.MyInetAddress2 www.csdn.net

執行結果:

<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gtwww.csdn.net/211.100.26.124
  • 測試2:本機名ComputerName

執行如下命令:

<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gtjava inet.MyInetAddress2 ComputerName

執行結果:

<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gtComputerName/192.168.18.10
  • 測試3:代表本機的localhost

執行如下命令:

<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gtjava inet.MyInetAddress2 localhost

執行結果:

<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gtlocalhost/127.0.0.1

對於本機來說,除了可以使用本機名或localhost外,還可以在hosts檔案中對本機做“IP/域名對映(在Windows作業系統下)。這個檔案在C:\WINDOWS\system32\drivers\etc中。開啟這兩個檔案中,在最後加一行如下所示的字串:

<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gt192.168.18.100   www.mysite.com
  • 測試4:本機域名www.mysite.com

執行如下命令:

<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gtjava inet.MyInetAddress2 www.mysite.com

執行結果:

<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gtwww.mysite.com/192.168.18.100

getByName方法除了可以使用域名作為引數外,也可以直接使用IP地址作為引數。如果使用IP地址作為引數,輸出InetAddress物件時域名為空(除非呼叫getHostName方法後,再輸出InetAddress物件。getHostName方法將在下面的內容介紹)。讀者可以使用129.42.58.212作為MyInetAddress2的命令列引數(這是www.ibm.comIP),看看會得到什麼結果。

三、getAllByName方法

使用getAllByName方法可以從DNS上得到域名對應的所有的IP。這個方法返回一個InetAddress型別的陣列。這個方法的定義如下:

<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gt   public static InetAddress[] getAllByName(String host) throws UnknownHostException

   getByName方法一樣,當host不存在時,getAllByName也會丟擲UnknowHostException異常,getAllByName也不會驗證IP地址是否存在。下面的程式碼演示了getAllByName的用法:

<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gt  package inet;
  
  
import java.net.*;
  
  
public class MyInetAddress3
  {
      
public static void main(String[] args) throws Exception
      {
          
if (args.length == 0)
              
return;
          String host 
= args[0];
          InetAddress addresses[] 
= InetAddress.getAllByName(host);
          
for (InetAddress address : addresses)
              System.out.println(address);
      }
  }

  • 測試1:遠端主機www.csdn.net

執行如下命令:

<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gtjava inet.MyInetAddress3 www.csdn.net

執行結果:

<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gtwww.csdn.net/211.100.26.124
www.csdn.net
/211.100.26.121
www.csdn.net
/211.100.26.122
www.csdn.net
/211.100.26.123

將上面的執行結果和例程3-2的測試1的執行結果進行比較,可以得出一個結論,getByName方法返回的IP地址就是getAllByName方法返回的第一個IP地址。事實上,getByName的確是這樣實現的,getByName的實現程式碼如下:


<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gtpublic static InetAddress getByName(String host) throws UnknownHostException
{
     return InetAddress.getAllByName(host)[0];
}
  •  測試2:使用www.csdn.net的一個IP 

執行如下命令:

<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gtjava inet.MyInetAddress3 211.100.26.122

執行結果:

<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gt/211.100.26.122

四、getByAddress方法

這個方法必須通過IP地址來建立InetAddress物件,而且IP地址必須是byte陣列形式。getByAddress方法有兩個過載形式,定義如下:

<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gtpublic static InetAddress getByAddress(byte[] addr) throws UnknownHostException
public static InetAddress getByAddress(String host, byte[] addr) throws UnknownHostException

第一個過載形式只需要傳遞byte陣列形式的IP地址,getByAddress方法並不驗證這個IP地址是否存在,只是簡單地建立一個InetAddress物件。addr陣列的長度必須是4IPv4)或16IPv6),如果是其他長度的byte陣列,getByAddress將丟擲一個UnknownHostException異常。第二個過載形式多了一個host,這個hostgetByNamegetAllByName方法中的host的意義不同,getByAddress方法並不使用hostDNS上查詢IP地址,這個host只是一個用於表示addr的別名。下面的程式碼演示了getByAddress的兩個過載形式的用法:

<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gt  package inet;
  
  
import java.net.*;
  
  
public class MyInetAddress4
  {
      
public static void main(String[] args) throws Exception
      {
          
byte ip[] = new byte[] { (byte141, (byte1468 , 66};
          InetAddress address1 
= InetAddress.getByAddress(ip);
          InetAddress address2 
= InetAddress.getByAddress("Oracle官方網站", ip);
          System.out.println(address1);
          System.out.println(address2);
      }
  }

上面程式碼的執行結果如下:

<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gt/141.146.8.66
Oracle官方網站
/141.146.8.66
    從上面的執行結果可以看出,getByAddress只是簡單地將host引數作為域名放到“/”前面,因此,host可以是任何字串。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12921506/viewspace-582303/,如需轉載,請註明出處,否則將追究法律責任。

相關文章