在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#网络编程 → webservice 根据当前请求IP 获取天气预报 实例【附源码】

webservice 根据当前请求IP 获取天气预报 实例【附源码】

C#网络编程

下载此实例
  • 开发语言:C#
  • 实例大小:3.64M
  • 下载次数:88
  • 浏览次数:1233
  • 发布时间:2013-02-21
  • 实例类别:C#网络编程
  • 发 布 人:星火燎原
  • 文件格式:.zip
  • 所需积分:2
 相关标签: IP webservice 天气预报

实例介绍

【实例简介】通过webservice 根据当前请求IP 获取该地区天气预报
【实例截图】


【核心代码】

    public partial class Form1 : Form
    {
        
        string myip,mycity;
        private double opacity = 0;//记录当前窗体的透明度   
        //实现无边框移动
        [DllImport("user32.dll")]
        public static extern bool ReleaseCapture();
        [DllImport("user32.dll")]
        public static extern bool SendMessage(IntPtr hwnd, int wMsg, int wParam, int lParam);
        public const int WM_SYSCOMMAND = 0x0112;
        public const int SC_MOVE = 0xF010;
        public const int HTCAPTION = 0x0002;
        //实现无边框移动

//实现win7 aero磨砂效果-------------------------------------------------------
        //[StructLayout(LayoutKind.Sequential)]
        //public struct MARGINS
        //{
        //    public int Left;
        //    public int Right;
        //    public int Top;
        //    public int Bottom;
        //}

        //[DllImport("dwmapi.dll", PreserveSig = false)]
        //static extern void DwmExtendFrameIntoClientArea(IntPtr hwnd, ref MARGINS margins);

        //[DllImport("dwmapi.dll", PreserveSig = false)]
        //static extern bool DwmIsCompositionEnabled();

        //protected override void OnLoad(EventArgs e)
        //{


        //    if (DwmIsCompositionEnabled())
        //    {
        //        MARGINS margins = new MARGINS();
        //        margins.Right = margins.Left = margins.Top = margins.Bottom = this.Width   this.Height;
        //        DwmExtendFrameIntoClientArea(this.Handle, ref margins);
        //    }
        //    base.OnLoad(e);
        //    GetIP();
        //    GetCityByIP(myip);
        //    DisplayWeather();


        //}

        //protected override void OnPaintBackground(PaintEventArgs e)
        //{
        //    base.OnPaintBackground(e);
        //    if (DwmIsCompositionEnabled())
        //    {
        //        e.Graphics.Clear(Color.Black);
        //    }
        //}
//实现win7 aero磨砂效果-------------------------------------------------------
        public Form1()
        {
            InitializeComponent();
          
        }

       

        private void Form1_Load(object sender, EventArgs e)
        {
               Opacity = 0;//指定窗体完全透明   
               GetIP();
               GetCityByIP(myip);
               DisplayWeather();
        }

        protected void GetIP()
        {
            try
            {
                string strUrl = "http://www.ip138.com/ip2city.asp"; //获得IP的网址了 
                Uri uri = new Uri(strUrl);
                System.Net.WebRequest wr = System.Net.WebRequest.Create(uri);
                System.IO.Stream s = wr.GetResponse().GetResponseStream();
                System.IO.StreamReader sr = new System.IO.StreamReader(s, Encoding.Default);
                string all = sr.ReadToEnd(); //读取网站的数据 
                int i = all.IndexOf("[")   1;
                string tempip = all.Substring(i, 15);
                string ip = tempip.Replace("]", "").Replace(" ", "");//找出i
                myip = ip;
            }
            catch (Exception e)
            {
                Console.WriteLine(e.ToString());
            }
        }

        protected void GetCityByIP(string myip)
        {
            IPCity.IpAddressSearchWebService city = new IPCity.IpAddressSearchWebService();


            string[] ss = city.getCountryCityByIp(myip);
           
            int n = ss[1].IndexOf(' ');//空格所在位置
            int m = ss[1].IndexOf('省');
            int x = n - m;
            mycity = ss[1].Substring(m 1,x-2);
          
        

        }
        protected void DisplayWeather()
        {


            webxml.WeatherWebService w = new webxml.WeatherWebService();
            //把webservice当做一个类来操作  

            string[] s = new string[23];//声明string数组存放返回结果  
          
            s = w.getWeatherbyCityName(mycity);
         
         
            if (s[8] == "")
            {
                MessageBox.Show("暂时不支持您查询的城市");
            }
            else
            {

                string png = s[8].Substring(0, s[8].Length - 4);
                string png2 = s[15].Substring(0, s[15].Length - 4);
                string png3 = s[20].Substring(0, s[20].Length - 4);
                string path = Application.StartupPath;
                pictoday.Image = Image.FromFile(path "\\images\\" png ".png");
                pic1.Image = Image.FromFile(path   "\\images\\"   png   ".png");
                pic2.Image = Image.FromFile(path   "\\images\\"   png2   ".png");
                pic3.Image = Image.FromFile(path   "\\images\\"   png3   ".png");
                this.lbl1.Text = s[5].ToString();
                this.lbl2.Text = s[12].ToString();
                this.lbl3.Text = s[17].ToString();
                this.time.Text = s[4].ToString();
                this.address.Text = s[1].ToString();
                this.temperature.Text = s[5].ToString();
                this.label4.Text = s[6].Substring(s[6].IndexOf('日') 1).ToString();
                this.label5.Text = s[7].ToString();
                this.tempo1.Text = s[6].Substring(s[6].IndexOf('日') 1);
                this.tempo2.Text = s[13].Substring(s[13].IndexOf('日') 1);
                this.tempo3.Text = s[18].Substring(s[18].IndexOf('日') 1);
               

            }
        }
        //实现无边框移动
        private void Form1_MouseDown(object sender, MouseEventArgs e)
        {
            ReleaseCapture();
            SendMessage(this.Handle, WM_SYSCOMMAND, SC_MOVE   HTCAPTION, 0);
        }

        private void timer1_Tick(object sender, EventArgs e)
        {
             if (opacity <= 1)  
 
            {  
 
                opacity = opacity   0.05;  
 
                Opacity = opacity;  
            }   
        }

      

       

    
    }

实例下载地址

webservice 根据当前请求IP 获取天气预报 实例【附源码】

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警