1、其中的一种实现方式是这样的
比如用百度查询天气得到所要的网页,然后提取网页中想要的数据即可。
其中关键是解析文件流。
比如用百度查询天气得到所要的网页,然后提取网页中想要的数据即可。
其中关键是解析文件流。
//得到网页内容
url = "";
URL url = new URL(url);
connection = url.openConnection();
BufferedReader in = new BufferedReader(new InputStreamReader(connection.getInputStream(), "utf-8"));
StringBuffer inputLine = new StringBuffer();
String str;
while ((str = in.readLine()) != null) {
if (str != null)
inputLine.append(str);
}
inputLine.toString();
//提取想要的网页内容
String htmlStr = inputLine;
String textStr = "";
try {
textStr = htmlStr.substring(htmlStr.indexOf("<em>"), htmlStr.indexOf("<script type=\"text/javascript\">(function("));
} catch (Exception e) {
System.err.println("Html1Text: " + e.getMessage());
}
//String str = textStr.replaceAll("\t", "");
return str.substring(str.indexOf("<div"), str.length());