码迷,mamicode.com
首页 > Web开发 > 详细

上传下载资源

时间:2014-11-10 13:24:21      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   http   color   ar   os   sp   for   

  1. WebClient:提供用于将数据发送到由 URI 标识的资源及从这样的资源接收数据的常用方法。
    bubuko.com,布布扣
     1 WebClient client = new WebClient();
     2 //下载文件
     3 client.DownloadFile(strUrlFilePath, localFilePath);
     4 
     5  //上传文件:打开写入流,写入数据
     6  Stream postStream = webClient.OpenWrite(targetUrl, "PUT");
     7  if (postStream.CanWrite)
     8  {
     9       postStream.Write(postArray, 0, postArray.Length);
    10  }
    11              
    View Code

上传下载资源

标签:des   style   blog   http   color   ar   os   sp   for   

原文地址:http://www.cnblogs.com/JustYong/p/4086751.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!