当前位置:学会吧培训频道电脑知识学习网页制作移动WAP开发用C#读取sina天气预报到wap页面» 正文

用C#读取sina天气预报到wap页面

[08-08 00:46:21]   来源:http://www.xuehuiba.com  移动WAP开发   阅读:8806
概要: string wea_city = weather_city(city); wea_city = wea_city.Replace(" ",""); start = wea_city.IndexOf("<b>",0,wea_city.Length); stop = wea_city.IndexOf("</b>", start); weather1 = wea_city.Substring(start, stop-start).Trim() + " "; weather1 = weather1.Substring(3,8).Trim(); start = wea_city.IndexOf("<t
用C#读取sina天气预报到wap页面,标签:移动WAP开发教程,wap网站开发,http://www.xuehuiba.com
            string wea_city = weather_city(city);
            wea_city = wea_city.Replace(" ","");

            start = wea_city.IndexOf("<b>",0,wea_city.Length);
            stop = wea_city.IndexOf("</b>", start);
            weather1 = wea_city.Substring(start, stop-start).Trim() + " ";
            weather1 = weather1.Substring(3,8).Trim();

            start =
            wea_city.IndexOf("<tdstyle="font-size:40px;font-family:TimesNewRoman;font-weight:bold;">",0,wea_city.Length);
            stop = wea_city.IndexOf("℃",start) + 40;
            weather2 = wea_city.Substring(start, stop-start);
            weather2 = weather2.Substring(stop-start-42,40).Trim();
            weather2 = weather2.Replace(" ","");

            start = wea_city.IndexOf("<fontcolor=#183888><b>", 0,
            wea_city.Length);
            stop = wea_city.IndexOf("</b></font>",start);
            wea = wea_city.Substring(start,stop-start);
            wea = wea.Substring(22,wea.Length-22) + "kbrk";
            wea = wea.Replace(" ", "");
            wea = wea.Replace(">", "k");
            wea = wea.Replace("<", "k");
            wea = wea.Replace("kbrk", "k");
            string [] wall = null;
            char[] seperator = ...{'k'};
            wall = wea.Split(seperator);

            /**///////////////////////////////////////
            l_city.Text = "[城市]:" + city;
            l_wea.Text = "[天气]:" + weather1;
            l_sky.Text = "[温度]:" + weather2;
            /**////////
            l_date.Text = wall[0];
            l_w1.Text = wall[1];
            l_w2.Text = wall[2];
            l_w3.Text = wall[3];
            }

            public string weather_city(string city)
            ...{
            string temp = null;
            try
            ...{
            string strURL =
            "http://weather.news.sina.com.cn/cgi-bin/figureWeather/search.cgi";

上一页  [1] [2] [3] [4] [5] [6]  下一页


Tag:移动WAP开发移动WAP开发教程,wap网站开发电脑知识学习 - 网页制作 - 移动WAP开发
《用C#读取sina天气预报到wap页面》相关文章
Copyright 学会吧 All Right Reserved.
在线学习社区!--学会吧
1 2 3 4 5 6 7 7 8 9 10 11 12 13