91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C#如何使用WebClient實現上傳下載

發布時間:2022-05-16 09:16:43 來源:億速云 閱讀:133 作者:iii 欄目:開發技術

本篇內容主要講解“C#如何使用WebClient實現上傳下載”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“C#如何使用WebClient實現上傳下載”吧!

一、概述

System.Net.WebClient屬于高層類、使用簡單。均支持異步版本。支持http,https,fpt,files等URI。

建議不要將 WebClient 類用于新的開發。Net4.5及以上請改用 System.Net.Http.HttpClient 類。

二、下載

1、OpenRead:打開一個可讀的Stream。

對于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;

2、DownloadData:以byte[]形式下載資源。

byte[] data= client.DownloadData(serverUri):

3、DownloadFile:將資源下載在本地文件。

void client.DownloadFile(serverUri,localFile):

4、DownloadString:以string的形式下載資源。

string content =client.DownloadString(serverUri):

5、事件

  • DownloadProgressChanged事件:

  • Download***Completed事件

6、獲取下載網址的真實文件名

獲取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;

三、上傳

1、OpenWrite:打開一個可寫的流。

對于FTP資源,默認使用STOR命令;對于HTTP資源,默認使用POST方法。

Strean =client.OpenWrite(serverUri);

2、UploadData:將byte[]數據上傳到serverUri。

byte[] =client.UploadData(serverUri,byte[]);

3、UploadFile:將本地文件上傳到serverUri。

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;
}

4、UploadValues:將指定的名/值集合到serverUri。

byte[] =client.UploadValues(serverUri,namevalueCollection);

5、事件:

  • UploadProgressChanged:e.ProcessPercentage,e.TatalBytesToReceive,e.BytesReceived;

  • Upload***Completed: e.Cancelled,e.Error,E.UserState;

四、System.Url類(統一資源表示符)

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實現上傳下載”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

金溪县| 正定县| 日土县| 福安市| 长宁区| 长子县| 昌邑市| 红原县| 托里县| 远安县| 六枝特区| 阜平县| 新建县| 老河口市| 贵港市| 定结县| 志丹县| 甘孜县| 安乡县| 武隆县| 海晏县| 兴仁县| 新乡市| 临泽县| 东阿县| 德化县| 巧家县| 阳朔县| 昌都县| 桦川县| 西乌珠穆沁旗| 庆元县| 武威市| 大余县| 盖州市| 留坝县| 余姚市| 鄂伦春自治旗| 永新县| 贵州省| 祁连县|