A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

  public string GetF(string path1,string path2)  
  {
   try
   {
   WebClient wc = new WebClient();
   wc.DownloadFile(@"E:\MyWeb\MyWeb2\Folder\" + path1, path2);
     
  return "下载成功。。。";
   }
   catch  
  {
   return "下载失败。。。";
   }
public string GetFF(string path1, string path2)
    {
        try
        {
            WebRequest wr = WebRequest.Create(@"E:\MyWeb\MyWeb2\Folder\"+path1);
            WebResponse pos = wr.GetResponse();
            long totlebyte = pos.ContentLength;
            Stream st = pos.GetResponseStream();
            FileStream fs = new FileStream(path2,FileMode.OpenOrCreate,FileAccess.Write);
            BinaryReader br = new BinaryReader(st);
            StreamReader reader = new StreamReader(st);
            byte[] bt = br.ReadBytes((int)st.Length);
            fs.Write(bt,0,bt.Length);
            st.Close();
            fs.Close();  
            return "下载成功。。。";
        }
        catch
        {
            return "下载失败。。。";
        }

    }
   

评分

参与人数 1技术分 +1 收起 理由
宋天琪 + 1

查看全部评分

1 个回复

倒序浏览
1. GetF方法采用WebClient 方式使用基于事件的异步编程模型,在HTTP响应返回时引发的WebClient回调是在UI线程中调用的,因此可用于更新UI元素的属性,例如把 HTTP响应中的数据绑定到UI的指定控件上进行显示。
2. GetFF方法是采用HttpWebRequest方式,它是基于后台进程运行的,回调不是UI线程, 可以获取对应HTTP请求的响应,获取响应流,然后对接响应流(以"GBK"字符集);

评分

参与人数 1技术分 +1 收起 理由
宋天琪 + 1

查看全部评分

回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马