上传下载资源
- WebClient:提供用于将数据发送到由 URI 标识的资源及从这样的资源接收数据的常用方法。
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
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。