首 页 行业资讯 新车 试驾评测 养车用车 车型库

测试IP是否连通的方法1

发布网友 发布时间:2022-04-21 15:52

我来回答

1个回答

热心网友 时间:2022-05-23 18:51

/** * 测试IP是否连通 Author zyx Date 2012-04-18 * * @param host * @return */ private boolean testHost(Map props) { boolean status = false; // 设置验证IP连通延迟时间 int timeout = 3000; String url = props.get("url"); String dbtype = (String) Globals.SYS_DB_TYPE.get(props.get("name")); String host = ""; // 从url中截取IP连接地址 这里的截取方法 仅支持oracle sqlserver mysql DB2 不支持sybase // 如果是oracle数据库 if ("1".equals(dbtype)) { if(url != null && !"".equals(url) && url.indexOf("@") > 0) host = url.substring(url.indexOf("@") + 1, url.indexOf(":", url.indexOf("@"))); } else { // 其他数据库 if(url != null && !"".equals(url) && url.indexOf("//") > 0) host = url.substring(url.indexOf("//") + 2, url.indexOf(":", url.indexOf("//"))); } try { if (InetAddress.getByName(host).isReachable(timeout)) { logger.info("IP: " + host + " 正常连接"); status = true; } else { logger.info("IP: " + host + " 无法连接"); status = false; } } catch (UnknownHostException e) { logger.info(host + "是非法的地址"); e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); }

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com