需求: 給定一個URL位址, 例如: http://www.cncounter.com/tools/shorturl.php, 解析對應的IP位址和連接埠號碼。
說明: 本文不涉及底層的 DNS 協定, 直接使用Java平台提供的API進行操作。
DNS也就是 Domain Name Service,即 網域服務。
我們知道, Java中與網址有關的類別包括 java.net.URL 和 java.net.URI 等, 其中 URI 是資源定位符, 可能包括 file: 之類的協定。
所以這裡我們使用URL 類別, 取得連接埠號碼的程式碼如下:
/** * 获取端口号 * * @param href 网址, ftp, http, nntp, ... 等等 * @return * @throws IOException */ public static int parsePort(String href) throws IOException { // URL url = new URL(href); // 端口号; 如果 href 中没有明确指定则为 -1 int port = url.getPort(); if (port < 0) { // 获取对应协议的默认端口号 port = url.getDefaultPort(); } return port; }
URL 類別是Java早期就存在的一個類。 內部邏輯比較複雜, 有興趣可以自己查看相關的JDK實現代碼。
其中取得連接埠號碼的2個方法:
getPort() 就是取得網址裡面指明的連接埠號碼, 如果沒有指定, 則回傳 -1。
getDefaultPort() 是取得協定對應的預設連接埠號碼, 如 http 協定預設連接埠號碼為 80, https 協定預設連接埠號碼是 443 等。
然後我們看提取Host 部分的程式碼:
/** * 获取Host部分 * * @param href 网址, ftp, http, nntp, ... 等等 * @return * @throws IOException */ public static String parseHost(String href) throws IOException { // URL url = new URL(href); // 获取 host 部分 String host = url.getHost(); return host; }
本質上, 也可以透過正規表示式或String直接截取Host, 但如果碰上複雜情況, 也不好處理, 例如: https://yourname:passwd@gitee.com/mumu-osc/NiceFish.git 這樣的複雜網址。
提取出網域之後, 可以透過 java.net.InetAddress 類別來找出IP位址。
程式碼如下所示:
/** * 根据域名(host)解析IP地址 * * @param host 域名 * @return * @throws IOException */ public static String parseIp(String host) throws IOException { // 根据域名查找IP地址 InetAddress inetAddress = InetAddress.getByName(host); // IP 地址 String address = inetAddress.getHostAddress(); return address; }
#可以看到,我們使用了 InetAddress.getByName() 靜態方法來尋找IP。
該類別也提供了其他靜態方法, 但一般不怎麼使用, 有興趣可以點開源碼看看。
然後, 我們透過main() 方法進行簡單的測試:
public static void main(String[] args) throws IOException { // String href = "http://www.cncounter.com/tools/shorturl.php"; // 端口号 int port = parsePort(href); // 域名 String host = parseHost(href); // IP 地址 String address = parseIp(host); // System.out.println("host=" + host); System.out.println("port=" + port); System.out.println("address=" + address); }
執行結果為:
host=www.cncounter.com port=80 address=198.11.179.83
知道IP和連接埠號碼, 我們就可以直接透過Socket 來進行連接了。
當然, 如果是 http 協定, 可以使用 Apache 的 HttpClient 工具, 功能強大而且使用方便。 但這個函式庫有個不好的地方在於,各個版本之間並不相容, API 也經常換, 程式設計時需要根據特定版本號來處理。
完整的程式碼如下所示:
import java.io.IOException; import java.net.*; /** * 查找IP地址 */ public class TestFindDNS { public static void main(String[] args) throws IOException { // String href = "http://www.cncounter.com/tools/shorturl.php"; // 端口号 int port = parsePort(href); // 域名 String host = parseHost(href); // IP 地址 String address = parseIp(host); // System.out.println("host=" + host); System.out.println("port=" + port); System.out.println("address=" + address); } /** * 获取端口号 * * @param href 网址, ftp, http, nntp, ... 等等 * @return * @throws IOException */ public static int parsePort(String href) throws IOException { // URL url = new URL(href); // 端口号; 如果 href 中没有明确指定则为 -1 int port = url.getPort(); if (port < 0) { // 获取对应协议的默认端口号 port = url.getDefaultPort(); } return port; } /** * 获取Host部分 * * @param href 网址, ftp, http, nntp, ... 等等 * @return * @throws IOException */ public static String parseHost(String href) throws IOException { // URL url = new URL(href); // 获取 host 部分 String host = url.getHost(); return host; } /** * 根据域名(host)解析IP地址 * * @param host 域名 * @return * @throws IOException */ public static String parseIp(String host) throws IOException { // 根据域名查找IP地址 InetAddress.getAllByName(host); InetAddress inetAddress = InetAddress.getByName(host); // IP 地址 String address = inetAddress.getHostAddress(); return address; } }
#OK, 請依照具體情況進行適當的封裝與處理。
以上內容就是Java 依照網址查詢DNS/IP位址的方法,希望能幫助大家。
相關推薦:
以上是Java 根據網址查詢DNS/IP位址的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!