首頁 > 軟體

C#使用WebClient實現上傳下載

2022-05-13 21:50:10

一、概述

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.jb51.net:2105/article/247999.htm?order=true”);

  • OriginalString 獲取傳遞給 Uri 建構函式的原始 URI 字串。//www.jb51.net:2105/article/247999.htm?order=true
  • Scheme 獲取此 URI 的方案名稱。http
  • IsFile 獲取一個值,該值指示指定的 Uri 是否為檔案 URI。false
  • Host 獲取此範例的主機部分。www.jb51.net
  • 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實現上傳下載的文章就介紹到這了。希望對大家的學習有所幫助,也希望大家多多支援it145.com。


IT145.com E-mail:sddin#qq.com