- 论坛徽章:
- 0
|
package test;
public class Astro {
public static void main(String args[]) {
get();
}
public static void get(){
// String url [][]={
// {"Sina_Today","http://astro.sina.com.cn/iframe/pc/west/frame0_1.html"},
// {"Sina_Tomorrow","http://astro.sina.com.cn/iframe/pc/west/frame0_1_1.html"},
// {"TQ","http://www.tianqi123.com/small_page/chengshi_392.html"},
//
// };
// for(int i=0;i
// saveFile("C:\\TEMP\\"+url[0]+".html",getHtml(url[1]));
System.out.println(getTemp());
}
public static String getImgPath(){
String html=getHtml("http://news.sina.com.cn/iframe/weather/442001.html");
String regex=";
String path="images/sun.png";
java.util.regex.Pattern pattern = java.util.regex.Pattern.compile(regex);
java.util.regex.Matcher m = pattern.matcher(html);
if(m.find())path=m.group(1);
return path;
}
public static String getTemp(){
String html=getHtml("http://news.sina.com.cn/iframe/weather/442001.html");
String t="20";
String regex="([0-9]+)℃~([0-9]+)℃";
System.out.println(regex);
java.util.regex.Pattern pattern = java.util.regex.Pattern.compile(regex);
java.util.regex.Matcher m = pattern.matcher(html);
int g=0;int d=0;
if(m.find()){
g=Integer.parseInt(m.group(2));
d=Integer.parseInt(m.group(1));
}
t=String.valueOf((d+g)/2);
return t;
}
public static String getHtml(String urlString) {
try {
StringBuffer html = new StringBuffer();
java.net.URL url = new java.net.URL(urlString);
java.net.HttpURLConnection conn = (java.net.HttpURLConnection) url.openConnection();
java.io.InputStreamReader isr = new java.io.InputStreamReader(conn.getInputStream());
java.io.BufferedReader br = new java.io.BufferedReader(isr);
String temp;
while ((temp = br.readLine()) != null) {
html.append(temp).append("\n");
}
br.close();isr.close(); return html.toString();
} catch (Exception e) { e.printStackTrace();return null;}
}
// public static void saveFile(String ff, String s) {
// try {
// File f = new File(ff);
// PrintWriter flow = new PrintWriter(new FileWriter(f));
// flow.println(s);
// flow.close();
// } catch (IOException e) {
// e.printStackTrace();
// }
// }
}
本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/22371/showart_2054762.html |
|