鸟语天空
http下载文件——WebClient
post by:追风剑情 2015-10-28 16:30

using System;
using System.Collections.Generic;
using System.Web;
using System.Net;
using System.Text;

namespace WebRequestTest
{
    class Program
    {
        static void Main(string[] args)
        {
            try
            {
                WebClient wc = new WebClient();
                Uri u = new Uri("http://192.168.1.211/android_res/version.txt");
                wc.DownloadStringCompleted += new DownloadStringCompletedEventHandler(OnDownloadStringComplete);
                wc.DownloadStringAsync(u);

                Console.Read();
            }
            catch (Exception e)
            {
                Console.WriteLine(e.ToString());
            }
        }

        private static void OnDownloadStringComplete(object sender, DownloadStringCompletedEventArgs e)
        {
            string result = e.Result;
            Console.WriteLine("下载完成:");
            Console.WriteLine(result);
        }
    }
}

运行效果:

hhhhh.png

评论:
发表评论:
昵称

邮件地址 (选填)

个人主页 (选填)

内容