狠狠色丁香婷婷综合尤物/久久精品综合一区二区三区/中国有色金属学报/国产日韩欧美在线观看 - 国产一区二区三区四区五区tv

LOGO OA教程 ERP教程 模切知識交流 PMS教程 CRM教程 開發文檔 其他文檔  
 
網站管理員

C# 編程WinForm 上傳文件到 Asp.Net 的 Web項目

admin
2017年3月22日 0:15 本文熱度 5522

在做WinForm時,需要WinForm同Web進行交互,有時需要進行圖片、文件的上傳操作.

 

WinForm的代碼如下:

 

C#代碼  收藏代碼
  1. private void button2_Click(object sender, EventArgs e)  
  2.         {  
  3.             // string a = MyUploader(this.textBox1.Text.Trim(), @"http://localhost:4451/TEST/Default.aspx");  
  4.   
  5.             string a = MyUploader(this.textBox1.Text.Trim(), @"http://localhost/release/Default.aspx");  
  6.   
  7.           MessageBox.Show(a);  
  8.         }  
  9.   
  10.   
  11.         public static string MyUploader(string strFileToUpload, string strUrl)  
  12.         {  
  13.             string strFileFormName = "file";  
  14.             Uri oUri = new Uri(strUrl);  
  15.             string strBoundary = "----------" + DateTime.Now.Ticks.ToString("x");  
  16.   
  17.             // The trailing boundary string  
  18.             byte[] boundaryBytes = Encoding.ASCII.GetBytes("\r\n--" + strBoundary + "\r\n");  
  19.   
  20.             // The post message header  
  21.             StringBuilder sb = new StringBuilder();  
  22.             sb.Append("--");  
  23.             sb.Append(strBoundary);  
  24.             sb.Append("\r\n");  
  25.             sb.Append("Content-Disposition: form-data; name=\"");  
  26.             sb.Append(strFileFormName);  
  27.             sb.Append("\"; filename=\"");  
  28.             sb.Append(Path.GetFileName(strFileToUpload));  
  29.             sb.Append("\"");  
  30.             sb.Append("\r\n");  
  31.             sb.Append("Content-Type: ");  
  32.             sb.Append("application/octet-stream");  
  33.             sb.Append("\r\n");  
  34.             sb.Append("\r\n");  
  35.             string strPostHeader = sb.ToString();  
  36.             byte[] postHeaderBytes = Encoding.UTF8.GetBytes(strPostHeader);  
  37.   
  38.             // The WebRequest  
  39.             HttpWebRequest oWebrequest = (HttpWebRequest)WebRequest.Create(oUri);  
  40.             oWebrequest.ContentType = "multipart/form-data; boundary=" + strBoundary;  
  41.             oWebrequest.Method = "POST";  
  42.   
  43.             // This is important, otherwise the whole file will be read to memory anyway...  
  44.             oWebrequest.AllowWriteStreamBuffering = false;  
  45.   
  46.             // Get a FileStream and set the final properties of the WebRequest  
  47.             FileStream oFileStream = new FileStream(strFileToUpload, FileMode.Open, FileAccess.Read);  
  48.             long length = postHeaderBytes.Length + oFileStream.Length + boundaryBytes.Length;  
  49.             oWebrequest.ContentLength = length;  
  50.             Stream oRequestStream = oWebrequest.GetRequestStream();  
  51.   
  52.             // Write the post header  
  53.             oRequestStream.Write(postHeaderBytes, 0, postHeaderBytes.Length);  
  54.   
  55.             // Stream the file contents in small pieces (4096 bytes, max).  
  56.             byte[] buffer = new Byte[checked((uint)Math.Min(4096, (int)oFileStream.Length))];  
  57.             int bytesRead = 0;  
  58.             while ((bytesRead = oFileStream.Read(buffer, 0, buffer.Length)) != 0)  
  59.                 oRequestStream.Write(buffer, 0, bytesRead);  
  60.             oFileStream.Close();  
  61.   
  62.             // Add the trailing boundary  
  63.             oRequestStream.Write(boundaryBytes, 0, boundaryBytes.Length);  
  64.             WebResponse oWResponse = oWebrequest.GetResponse();  
  65.             Stream s = oWResponse.GetResponseStream();  
  66.             StreamReader sr = new StreamReader(s);  
  67.             String sReturnString = sr.ReadToEnd();  
  68.             Console.WriteLine(sReturnString);  
  69.             // Clean up  
  70.             oFileStream.Close();  
  71.             oRequestStream.Close();  
  72.             s.Close();  
  73.             sr.Close();  
  74.   
  75.             return sReturnString;  
  76.         }  

 

在按鈕點擊時,便會觸發提交操作,Web的Default.aspx代碼如下:

 

C#代碼  收藏代碼
  1. public partial class _Default : System.Web.UI.Page   
  2. {  
  3.     protected void Page_Load(object sender, EventArgs e)  
  4.     {  
  5.         if (Request.Files.Count > 0)  
  6.         {  
  7.             try  
  8.             {  
  9.                 HttpPostedFile file = Request.Files[0];  
  10.                 string filePath = this.MapPath("FileUpload") + "\\" + file.FileName;  
  11.                 file.SaveAs(filePath);  
  12.   
  13.                 Response.Write("成功了");  
  14.        
  15.             }  
  16.             catch (Exception)  
  17.             {  
  18.   
  19.                 Response.Write("失敗了1");  
  20.             }  
  21.         }  
  22.         else  
  23.         {  
  24.             Response.Write("失敗了2");  
  25.         }  
  26.   
  27.         Response.End();  
  28.     }  
  29. }  
 

 

這樣,便可以將文件通過winform 上傳到web 服務器上。


該文章在 2017/3/22 0:15:30 編輯過
關鍵字查詢
相關文章
正在查詢...
點晴ERP是一款針對中小制造業的專業生產管理軟件系統,系統成熟度和易用性得到了國內大量中小企業的青睞。
點晴PMS碼頭管理系統主要針對港口碼頭集裝箱與散貨日常運作、調度、堆場、車隊、財務費用、相關報表等業務管理,結合碼頭的業務特點,圍繞調度、堆場作業而開發的。集技術的先進性、管理的有效性于一體,是物流碼頭及其他港口類企業的高效ERP管理信息系統。
點晴WMS倉儲管理系統提供了貨物產品管理,銷售管理,采購管理,倉儲管理,倉庫管理,保質期管理,貨位管理,庫位管理,生產管理,WMS管理系統,標簽打印,條形碼,二維碼管理,批號管理軟件。
點晴免費OA是一款軟件和通用服務都免費,不限功能、不限時間、不限用戶的免費OA協同辦公管理系統。
Copyright 2010-2025 ClickSun All Rights Reserved