免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1710 | 回复: 0
打印 上一主题 下一主题

使用正则表达式获取天气预报代码 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-09-17 18:17 |只看该作者 |倒序浏览

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
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP