您好,登錄后才能下訂單哦!
本篇內容主要講解“C#如何使用WebClient實現上傳下載”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“C#如何使用WebClient實現上傳下載”吧!
System.Net.WebClient屬于高層類、使用簡單。均支持異步版本。支持http,https,fpt,files等URI。
建議不要將
WebClient
類用于新的開發。Net4.5及以上請改用 System.Net.Http.HttpClient 類。
對于FTP資源,默認使用RETR命令;對于HTTP資源,默認使用Get方法。
Stream= client.OpenRead(serverUri):
舉例
WebClient client = new WebClient(); client.Headers.Add("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.0.3705;)"); client.Encoding = Encoding.GetEncoding("gb2312"); client.Credentials = new NetworkCredential("csp", "welcome"); Stream data = client.OpenRead(url);//OpenRead為下載的數據打開一個只讀的流 StreamReader reader = new StreamReader(data, Encoding.GetEncoding("gb2312")); sting s = reader.ReadToEnd(); reader.Close(); return s;
byte[] data= client.DownloadData(serverUri):
void client.DownloadFile(serverUri,localFile):
string content =client.DownloadString(serverUri):
DownloadProgressChanged事件:
Download***Completed事件
獲取http頭部信息的內容。
Content-disposition 是 MIME 協議的擴展,MIME 協議指示 MIME 用戶代理如何顯示附加的文件。
Content-disposition其實可以控制用戶請求所得的內容存為一個文件的時候提供一個默認的文件名,文件直接在瀏覽器上顯示或者在訪問時彈出文件下載對話框。
形如:”Content-Disposition: attachment;filename=FileName.txt“。
當你在響應類型為application/octet- stream情況下使用了這個頭信息的話,那就意味著你不想直接顯示內容,而是彈出一個"文件下載"的對話框
WebClient client = new WebClient(); byte[] data = client.DownloadData(fileUrl); var mc = Regex.Matches(Server.UrlDecode(client.ResponseHeaders["Content-Disposition"]), @"filename=(.+)"); string filename = mc[0].Groups[1].Value;
對于FTP資源,默認使用STOR命令;對于HTTP資源,默認使用POST方法。
Strean =client.OpenWrite(serverUri);
byte[] =client.UploadData(serverUri,byte[]);
byte[] =client.UploadFile(serverUri,localFile);
舉例:
WebClient client = new WebClient(); client.Encoding = Encoding.UTF8; client.Credentials = new NetworkCredential("csp", "welcome"); client.UploadProgressChanged += new UploadProgressChangedEventHandler(UploadProgressCallback); client.UploadFileCompleted += new UploadFileCompletedEventHandler(UploadFileCompletedCallback); client.UploadFileAsync(new Uri(uriString + Path.GetFileName(localfileName)), null, localfileName, progressbarfrom); /// /// 上傳過程處理 /// /// /// private static void UploadProgressCallback(object sender, UploadProgressChangedEventArgs e) { (e.UserState as ProgressBar).Value = e.ProgressPercentage; } private static void UploadFileCompletedCallback(object sender, UploadFileCompletedEventArgs e) { if (e.Error == null) MessageBox.Show("完成上傳"); else throw e.Error; }
byte[] =client.UploadValues(serverUri,namevalueCollection);
UploadProgressChanged:e.ProcessPercentage,e.TatalBytesToReceive,e.BytesReceived;
Upload***Completed: e.Cancelled,e.Error,E.UserState;
Uri url=new Uri(”//www.neiyidaogou.com:2105/article/247999.htm?order=true”);
OriginalString 獲取傳遞給 Uri 構造函數的原始 URI 字符串。//www.neiyidaogou.com:2105/article/247999.htm?order=true
Scheme 獲取此 URI 的方案名稱。http
IsFile 獲取一個值,該值指示指定的 Uri 是否為文件 URI。false
Host 獲取此實例的主機部分。www.neiyidaogou.com
HostNameType 獲取 URI 中指定的主機名的類型。DNS
Port 獲取此 URI 的端口號。2105
IsDefaultPort 獲取一個值,該值指示 URI 的端口值是否為此方案的默認值。false
AbsolutePath 獲取 URI 的絕對路徑。/article/247999.htm
Query 獲取指定 URI 中包括的任何查詢信息。?order=true
PathAndQuery 獲取用問號 (?) 分隔的 AbsolutePath 和 Query 屬性。/article/247999.htm?order=true
到此,相信大家對“C#如何使用WebClient實現上傳下載”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。