标签:des style blog http color ar os sp for
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
标签:des style blog http color ar os sp for
原文地址:http://www.cnblogs.com/JustYong/p/4086751.html