Java 網路程式設計 -- IP 查詢

Java 網路程式

簡介

IP

URL

UDP

TCP

Telnet

WebServer

網頁下載

網路爬蟲

Proxy

瀏覽器

訊息

相關網站

參考文獻

最新修改

簡體版

English

範例程式

import java.io.*;
import java.net.*;
 
public class IP
{
    public static void main(String[] args)
    {
       String site = args[0];
       try
       {
          InetAddress host = InetAddress.getByName(site);
          System.out.println("網域名稱: " + host.getHostName());
          System.out.println("IP位址: " + host.getHostAddress());
          System.out.println("本機名稱: " + InetAddress.getLocalHost());
       }
       catch(Exception e)
       {
          System.out.println("IP 查詢錯誤!") ;
       }
    }
}

執行結果

D:\java>javac IP.java

D:\java>java IP 127.0.0.1
網域名稱: localhost
IP位址: 127.0.0.1
本機名稱: ccc-kmit3/192.168.60.155

D:\java>java IP www.google.com.tw
網域名稱: www.google.com.tw
IP位址: 64.233.183.99
本機名稱: ccc-kmit3/192.168.60.155

Facebook

Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-NonCommercial-ShareAlike 3.0 License