【原創】Java網路程式設計從入門到精通(10):Inet4Address類和Inet6Address類

銀河使者發表於2009-05-05

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

    為了區分IPv4IPv6地址,Java提供了兩個類:Inet4AddressInet6Address,它們都是InetAddress類的子類,這兩個類的定義如下:

<!--

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

--&gtpublic final class Inet4Address extends InetAddress
public final class Inet6Address extends InetAddress

Normal 0 7.8 磅 0 2 false false false MicrosoftInternetExplorer4

這兩個類分別按著IPv4IPv6的規則實現了InetAddress類中的public方法。它們所不同的是Inet6Address類比Inet4Address類多了一個方法:isIPv4CompatibleAddress,這個方法用來判斷一個IPv6地址是否和IPv4地址相容。和IPv4相容的IPv6地址除了最後四個位元組有值名,其他的位元組都是0,如0:0:0:0:0:0.192.168.18.10::ABCD:FAFA都是和IPv4相容的IPv6地址。

當使用InetAddress類的四個靜態方法建立InetAddress物件後,可以通過getAddress返回的byte陣列來判斷這個IP地址是IPv4還是IPv6地址(byte陣列長度為4就是IPv4地址,byte陣列長度為16就是IPv6地址),也可以將instanceof來確定InetAddress物件是它的哪個子類的例項。下面的程式碼演示瞭如何判斷一個IP地址是IPv4還是IPv6地址:

<!--

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

--&gtpackage mynet;

import java.net.*;

public class MyIP
{
    
public static void main(String[] args) throws Exception
    {
        
if (args.length == 0)
            
return;
        InetAddress address 
= InetAddress.getByName(args[0]);
        System.out.println(
"IP: " + address.getHostAddress());
        
switch (address.getAddress().length)
        {
            
case 4:
                System.out.println(
"根據byte陣列長度判斷這個IP地址是IPv4地址!");
                
break;
            
case 16:
                System.out.println(
"根據byte陣列長度判斷這個IP地址是IPv6地址!");
                
break;
        }
        
if (address instanceof Inet4Address)
            System.out.println(
"使用instanceof判斷這個IP地址是IPv4地址!");
        
else if (address instanceof Inet6Address)
            System.out.println(
"使用instanceof判斷這個IP地址是IPv6地址!");
    }
}

Normal 0 7.8 磅 0 2 false false false MicrosoftInternetExplorer4 測試1

執行如下命令:

<!--

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

--&gtjava mynet.MyIP www.csdn.net

執行結果:

<!--

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

--&gtIP: 211.100.26.122
根據byte陣列長度判斷這個IP地址是IPv4地址!
使用instanceof判斷這個IP地址是IPv4地址!

測試2

執行如下命令:

<!--

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

--&gtjava mynet.MyIP www.neu6.edu.cn

執行結果

<!--

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

--&gtIP: 2001:da8:9000:b255:200:e8ff:feb0:5c5e
根據byte陣列長度判斷這個IP地址是IPv6地址!
使用instanceof判斷這個IP地址是IPv6地址!

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

相關文章