JAVA判断ip端口是否可连接
Posted laugher_ccc
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JAVA判断ip端口是否可连接相关的知识,希望对你有一定的参考价值。
1.判断ip、端口是否可连接
public static boolean isHostConnectable(String host, int port) { Socket socket = new Socket(); try { socket.connect(new InetSocketAddress(host, port)); } catch (IOException e) { e.printStackTrace(); return false; } finally { try { socket.close(); } catch (IOException e) { e.printStackTrace(); } } return true; }
2.判断ip是否可以连接 timeOut是超时时间
public static boolean isHostReachable(String host, Integer timeOut) { try { return InetAddress.getByName(host).isReachable(timeOut); } catch (UnknownHostException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } return false; }
以上是关于JAVA判断ip端口是否可连接的主要内容,如果未能解决你的问题,请参考以下文章
是用telnet ip 端口号的方式查看端口开放情况,怎样通过返回值判断?