Java 根据网址查询DNS/IP地址的方法
需求: 给定一个url地址, 例如: , 解析对应的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实现数据库主键生成示例