cn.hutool.core.net.LocalPortGenerater Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hutool-all Show documentation
Show all versions of hutool-all Show documentation
Hutool是一个小而全的Java工具类库,通过静态方法封装,降低相关API的学习成本,提高工作效率,使Java拥有函数式语言般的优雅,让Java语言也可以“甜甜的”。
package cn.hutool.core.net;
import java.io.Serializable;
import java.util.concurrent.atomic.AtomicInteger;
/**
* 本地端口生成器
* 用于生成本地可用(未被占用)的端口号
* 注意:多线程甚至单线程访问时可能会返回同一端口(例如获取了端口但是没有使用)
*
* @author looly
* @since 4.0.3
*
*/
public class LocalPortGenerater implements Serializable{
private static final long serialVersionUID = 1L;
/** 备选的本地端口 */
private final AtomicInteger alternativePort;
/**
* 构造
*
* @param beginPort 起始端口号
*/
public LocalPortGenerater(int beginPort) {
alternativePort = new AtomicInteger(beginPort);
}
/**
* 生成一个本地端口,用于远程端口映射
*
* @return 未被使用的本地端口
*/
public int generate() {
int validPort = alternativePort.get();
// 获取可用端口
while (false == NetUtil.isUsableLocalPort(validPort)) {
validPort = alternativePort.incrementAndGet();
}
return validPort;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy