当您通过其 IP 地址连接时,我的设备会发布一个 html 页面。例如,如果我要在我的计算机上访问“192.168.1.104”,我会看到设备发布的 html 页面。我正在尝试抓取此 html,但我遇到了一些错误,特别是在我的方法的第一行出现了 MalformedURLException。我已经在下面发布了我的方法。我找到了一些获取 html 的代码,并根据我的需要对其进行了调整。谢谢
public String getSbuHtml(String ipToPoll) throws IOException, SocketTimeoutException {
URL url = new URL("http", ipToPoll, -1, "/");
URLConnection con = url.openConnection();
con.setConnectTimeout(1000);
con.setReadTimeout(1000);
Pattern p = Pattern.compile("text/html;\\s+charset=([^\\s]+)\\s*");
Matcher m = p.matcher(con.getContentType());
String charset = m.matches() ? m.group(1) : "ISO-8859-1";
BufferedReader r = new BufferedReader(
new InputStreamReader(con.getInputStream(), charset));
String line = null;
StringBuilder buf = new StringBuilder();
while ((line = r.readLine()) != null) {
buf.append(line).append(System.getProperty("line.separator"));
}
return buf.toString();
}
编辑:上面的代码已被更改以反映构造一个新的 URL 以与 ip 一起正常工作。但是,当我尝试从连接中获取 contentType 时,它为空。