fix local port bug

This commit is contained in:
Looly 2020-03-08 17:41:57 +08:00
parent 3c1060769e
commit fb4af337ea
4 changed files with 122 additions and 125 deletions

View File

@ -10,6 +10,7 @@
### Bug修复
* 【setting】 修复Props.toBean方法null的问题
* 【core 】 修复DataUtil.parseLocalDateTime无时间部分报错问题issue#I1B18H@Gitee
* 【core 】 修复NetUtil.isUsableLocalPort()判断问题issue#765@Github
-------------------------------------------------------------------------------------------------------------

View File

@ -1,13 +1,25 @@
package cn.hutool.core.net;
import cn.hutool.core.collection.CollUtil;
import cn.hutool.core.collection.CollectionUtil;
import cn.hutool.core.exceptions.UtilException;
import cn.hutool.core.io.IORuntimeException;
import cn.hutool.core.io.IoUtil;
import cn.hutool.core.lang.Filter;
import cn.hutool.core.lang.Validator;
import cn.hutool.core.util.RandomUtil;
import cn.hutool.core.util.StrUtil;
import java.io.IOException;
import java.io.OutputStream;
import java.net.DatagramSocket;
import java.net.IDN;
import java.net.Inet4Address;
import java.net.Inet6Address;
import java.net.InetAddress;
import java.net.InetSocketAddress;
import java.net.NetworkInterface;
import java.net.ServerSocket;
import java.net.Socket;
import java.net.SocketException;
import java.net.URL;
@ -21,31 +33,22 @@ import java.util.LinkedHashSet;
import java.util.Set;
import java.util.TreeSet;
import javax.net.ServerSocketFactory;
import cn.hutool.core.collection.CollUtil;
import cn.hutool.core.collection.CollectionUtil;
import cn.hutool.core.exceptions.UtilException;
import cn.hutool.core.io.IORuntimeException;
import cn.hutool.core.io.IoUtil;
import cn.hutool.core.lang.Filter;
import cn.hutool.core.lang.Validator;
import cn.hutool.core.util.RandomUtil;
import cn.hutool.core.util.StrUtil;
/**
* 网络相关工具
*
* @author xiaoleilu
*
*/
public class NetUtil {
public final static String LOCAL_IP = "127.0.0.1";
/** 默认最小端口1024 */
/**
* 默认最小端口1024
*/
public static final int PORT_RANGE_MIN = 1024;
/** 默认最大端口65535 */
/**
* 默认最大端口65535
*/
public static final int PORT_RANGE_MAX = 0xFFFF;
/**
@ -103,12 +106,21 @@ public class NetUtil {
// 给定的IP未在指定端口范围中
return false;
}
try {
ServerSocketFactory.getDefault().createServerSocket(port, 1, InetAddress.getByName(LOCAL_IP)).close();
return true;
} catch (Exception e) {
// issue#765@Github, 某些绑定非127.0.0.1的端口无法被检测到
try (ServerSocket ss = new ServerSocket(port)) {
ss.setReuseAddress(true);
} catch (IOException ignored) {
return false;
}
try (DatagramSocket ds = new DatagramSocket(port)) {
ds.setReuseAddress(true);
} catch (IOException ignored) {
return false;
}
return true;
}
/**
@ -159,7 +171,7 @@ public class NetUtil {
* @since 4.5.4
*/
public static int getUsableLocalPort(int minPort, int maxPort) {
final int maxPortExclude = maxPort +1;
final int maxPortExclude = maxPort + 1;
int randomPort;
for (int i = minPort; i < maxPortExclude; i++) {
randomPort = RandomUtil.randomInt(minPort, maxPortExclude);
@ -176,8 +188,8 @@ public class NetUtil {
* 来自org.springframework.util.SocketUtils
*
* @param numRequested 尝试次数
* @param minPort 端口最小值包含
* @param maxPort 端口最大值包含
* @param minPort 端口最小值包含
* @param maxPort 端口最大值包含
* @return 可用的端口
* @since 4.5.4
*/
@ -223,7 +235,7 @@ public class NetUtil {
* 相对URL转换为绝对URL
*
* @param absoluteBasePath 基准路径绝对
* @param relativePath 相对路径
* @param relativePath 相对路径
* @return 绝对URL
*/
public static String toAbsoluteUrl(String absoluteBasePath, String relativePath) {
@ -260,7 +272,7 @@ public class NetUtil {
* 当host中包含端口时隔开使用host中的端口否则使用默认端口<br>
* 给定host为空时使用本地host127.0.0.1
*
* @param host Host
* @param host Host
* @param defaultPort 默认端口
* @return InetSocketAddress
*/
@ -314,9 +326,9 @@ public class NetUtil {
}
NetworkInterface netInterface;
while(networkInterfaces.hasMoreElements()){
while (networkInterfaces.hasMoreElements()) {
netInterface = networkInterfaces.nextElement();
if(null != netInterface && name.equals(netInterface.getName())){
if (null != netInterface && name.equals(netInterface.getName())) {
return netInterface;
}
}
@ -432,7 +444,7 @@ public class NetUtil {
* 获取本机网卡IP地址这个地址为所有网卡中非回路地址的第一个<br>
* 如果获取失败调用 {@link InetAddress#getLocalHost()}方法获取<br>
* 此方法不会抛出异常获取失败将返回<code>null</code><br>
*
* <p>
* 参考http://stackoverflow.com/questions/9481865/getting-the-ip-address-of-the-current-machine-using-java
*
* @return 本机网卡IP地址获取失败返回<code>null</code>
@ -453,9 +465,9 @@ public class NetUtil {
* 1. 查找所有网卡地址必须非回路loopback地址非局域网地址siteLocalIPv4地址
* 2. 如果无满足要求的地址调用 {@link InetAddress#getLocalHost()} 获取地址
* </pre>
*
* <p>
* 此方法不会抛出异常获取失败将返回<code>null</code><br>
*
* <p>
* https://github.com/looly/hutool/issues/428
*
* @return 本机网卡IP地址获取失败返回<code>null</code>
@ -467,7 +479,7 @@ public class NetUtil {
return false == address.isLoopbackAddress()
// 非地区本地地址指10.0.0.0 ~ 10.255.255.255172.16.0.0 ~ 172.31.255.255192.168.0.0 ~ 192.168.255.255
&& false == address.isSiteLocalAddress()
// 需为IPV4地址
// 需为IPV4地址
&& address instanceof Inet4Address;
});
@ -507,7 +519,7 @@ public class NetUtil {
* 获得指定地址信息中的MAC地址
*
* @param inetAddress {@link InetAddress}
* @param separator 分隔符推荐使用-或者:
* @param separator 分隔符推荐使用-或者:
* @return MAC地址-分隔
*/
public static String getMacAddress(InetAddress inetAddress, String separator) {
@ -553,13 +565,12 @@ public class NetUtil {
}
/**
*
* 简易的使用Socket发送数据
*
* @param host Server主机
* @param port Server端口
* @param host Server主机
* @param port Server端口
* @param isBlock 是否阻塞方式
* @param data 需要发送的数据
* @param data 需要发送的数据
* @throws IORuntimeException IO异常
* @since 3.3.0
*/
@ -573,7 +584,6 @@ public class NetUtil {
}
/**
*
* 使用普通Socket发送数据
*
* @param host Server主机
@ -599,7 +609,7 @@ public class NetUtil {
* 是否在CIDR规则配置范围内<br>
* 方法来自成都小邓
*
* @param ip 需要验证的IP
* @param ip 需要验证的IP
* @param cidr CIDR规则
* @return 是否在范围内
* @since 4.0.6
@ -658,38 +668,39 @@ public class NetUtil {
return StrUtil.isBlank(checkString) || "unknown".equalsIgnoreCase(checkString);
}
/**
* 检测IP地址是否能ping通
*
* @param ip IP地址
* @return 返回是否ping通
*/
public static boolean ping(String ip) {
return ping(ip, 200);
}
/**
* 检测IP地址是否能ping通
*
* @param ip IP地址
* @return 返回是否ping通
*/
public static boolean ping(String ip) {
return ping(ip, 200);
}
/**
* 检测IP地址是否能ping通
*
* @param ip IP地址
* @param timeout 检测超时毫秒
* @return 是否ping通
*/
public static boolean ping(String ip, int timeout) {
try {
return InetAddress.getByName(ip).isReachable(timeout); // 当返回值是true时说明host是可用的false则不可
} catch (Exception ex) {
return false;
}
}
/**
* 检测IP地址是否能ping通
*
* @param ip IP地址
* @param timeout 检测超时毫秒
* @return 是否ping通
*/
public static boolean ping(String ip, int timeout) {
try {
return InetAddress.getByName(ip).isReachable(timeout); // 当返回值是true时说明host是可用的false则不可
} catch (Exception ex) {
return false;
}
}
// ----------------------------------------------------------------------------------------- Private method start
/**
* 指定IP的long是否在指定范围内
*
* @param userIp 用户IP
* @param begin 开始IP
* @param end 结束IP
* @param begin 开始IP
* @param end 结束IP
* @return 是否在范围内
*/
private static boolean isInner(long userIp, long begin, long end) {

View File

@ -379,35 +379,17 @@ public class RandomUtil {
*
* @param length 长度
* @return 随机索引
* @since 5.2.1
*/
public static int[] createRandomList(int length){
int[] list = ArrayUtil.range(length);
public static int[] randomInts(int length){
final int[] range = ArrayUtil.range(length);
for (int i = 0; i < length; i++) {
int random = randomInt(i,length);
ArrayUtil.swap(list,i,random);
ArrayUtil.swap(range,i,random);
}
return list;
return range;
}
/**
* 随机获得列表中的一定量的元素返回List
*
* @param source 列表
* @param count 随机取出的个数
* @param <T> 元素类型
* @return 随机列表
*/
public static <T> List<T> randomEleList(List<T> source, int count){
if(count >= source.size()){
return source;
}
int[] randomList = ArrayUtil.sub(createRandomList(source.size()),0,count);
List<T> result = new ArrayList<>();
for (int e: randomList){
result.add(source.get(e));
}
return result;
}
/**
* 获得一个随机的字符串只包含数字和字符
*

View File

@ -1,14 +1,12 @@
package cn.hutool.core.net;
import java.net.InetAddress;
import cn.hutool.core.lang.PatternPool;
import cn.hutool.core.util.ReUtil;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import cn.hutool.core.lang.PatternPool;
import cn.hutool.core.net.NetUtil;
import cn.hutool.core.util.ReUtil;
import java.net.InetAddress;
/**
* NetUtil单元测试
@ -54,4 +52,9 @@ public class NetUtilTest {
long ipLong = NetUtil.ipv4ToLong("127.0.0.1");
Assert.assertEquals(2130706433L, ipLong);
}
@Test
public void isUsableLocalPortTest(){
Assert.assertTrue(NetUtil.isUsableLocalPort(80));
}
}