try {
s = Integer.valueOf(portStart);
e = Integer.valueOf(portEnd);
} catch (Exception ex) {
JOptionPane.showMessageDialog(null, "端口输入有误");
return;
}
// 检查端口是否超出范围
if (! (checkPort(s) && checkPort(e)))
{
JOptionPane.showMessageDialog(null, "端口应该大于0而小于65535");
return;
}
scann(ip, s, e);
延伸阅读
文章来源于领测软件测试网 https://www.ltesting.net/