具体代码:
public class NetAddrUtil {
/**
* 从url中分析出hostIP<br/>
* @param url
* @author wull
* @return
*/
public static String getIpFromUrl(String url) {
// 1.判断是否为空
if (url == null || url.trim().equals("")) {
return "";
}
// 2. 如果是以localhost,那么替换成127.0.0.1
if(url.startsWith("http://" + C.Net.LOCALHOST_STR) ){
url = url.replace("http://" + C.Net.LOCALHOST_STR, "http://" + C.Net.LOCALHOST_NUM) ;
}
String host = "";
Pattern p = Pattern.compile("(?<=//|)((\\w)+\\.)+\\w+");
Matcher matcher = p.matcher(url);
if (matcher.find()) {
host = matcher.group();
}
return host;
}
/**
* 从url中分析出hostIP:PORT<br/>
* @param url
* @author wull */
public static IpPortAddr getIpPortFromUrl(String url) {
// 1.判断是否为空
if (url == null || url.trim().equals("")) {
return null;
}
// 2. 如果是以localhost,那么替换成127.0.0.1
if(url.startsWith("http://" + C.Net.LOCALHOST_STR) ){
url = url.replace("http://" + C.Net.LOCALHOST_STR, "http://" + C.Net.LOCALHOST_NUM) ;
}
String host = "";
Pattern p = Pattern.compile("(?<=//|)((\\w)+\\.)+\\w+(:\\d{0,5})?");
Matcher matcher = p.matcher(url);
if (matcher.find()) {
host = matcher.group() ;
}
// 如果
if(host.contains(":") == false){
return new IpPortAddr(host, 80 );
}
String[] ipPortArr = host.split(":");
return new IpPortAddr(ipPortArr[0] , ConfigUtil.parseInt( ipPortArr[1] ));
}
public static void main(String [] args){
String url = "http://10.33.32.81:8080/login.action";
System.out.println(NetAddrUtil.getIpFromUrl(url) );
IpPortAddr addr= NetAddrUtil.getIpPortFromUrl(url) ;
System.out.println(addr.getIp() +"=========>" +addr.getPort() );
}
}
执行结果:
10.33.32.81
10.33.32.81=========>8080
10.33.32.81
10.33.32.81=========>8080
本文介绍了一个用于从URL中解析出主机IP及端口的Java类NetAddrUtil,包括从URL中提取IP地址和同时提取IP与端口号的功能实现。

1596

被折叠的 条评论
为什么被折叠?



