欧美成人精品手机在线观看_69视频国产_动漫精品第一页_日韩中文字幕网 - 日本欧美一区二区

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

c#使用HttpWebRequest上傳文件同時攜帶其他參數

admin
2017年3月22日 0:30 本文熱度 6548
 這個小程序參考了另一位博友的代碼,做了稍許調整,創建的兩個Handler程序,一個上傳的ashx,一個接收的ashx

上傳文件代碼

[csharp] view plain copy
  1. public void ProcessRequest(HttpContext context)  
  2.         {  
  3.             //參考http://www.cnblogs.com/greenerycn/archive/2010/05/15/csharp_http_post.html  
  4.             string filePath = "d:\\apple4.jpg";  
  5.             string fileName = "apple4.jpg";  
  6.             string postURL = "http://192.168.1.11/testhandler/accfile.ashx";  
  7.               
  8.             // 邊界符  
  9.             var boundary = "---------------" + DateTime.Now.Ticks.ToString("x");  
  10.             var beginBoundary = Encoding.ASCII.GetBytes("--" + boundary + "\r\n");  
  11.             var fileStream = new FileStream(filePath, FileMode.Open, FileAccess.Read);  
  12.   
  13.             // 最后的結束符  
  14.             var endBoundary = Encoding.ASCII.GetBytes("--" + boundary + "--\r\n");  
  15.   
  16.             // 文件參數頭  
  17.             const string filePartHeader =  
  18.                 "Content-Disposition: form-data; name=\"{0}\"; filename=\"{1}\"\r\n" +  
  19.                  "Content-Type: application/octet-stream\r\n\r\n";  
  20.             var fileHeader = string.Format(filePartHeader, "file", fileName);  
  21.             var fileHeaderBytes = Encoding.UTF8.GetBytes(fileHeader);  
  22.   
  23.             // 開始拼數據  
  24.             var memStream = new MemoryStream();  
  25.             memStream.Write(beginBoundary, 0, beginBoundary.Length);  
  26.   
  27.             // 文件數據  
  28.             memStream.Write(fileHeaderBytes, 0, fileHeaderBytes.Length);  
  29.             var buffer = new byte[1024];  
  30.             int bytesRead; // =0  
  31.             while ((bytesRead = fileStream.Read(buffer, 0, buffer.Length)) != 0)  
  32.             {  
  33.                 memStream.Write(buffer, 0, bytesRead);  
  34.             }  
  35.             fileStream.Close();  
  36.   
  37.             // Key-Value數據  
  38.             var stringKeyHeader = "\r\n--" + boundary +  
  39.                                    "\r\nContent-Disposition: form-data; name=\"{0}\"" +  
  40.                                    "\r\n\r\n{1}\r\n";  
  41.   
  42.             Dictionary<stringstring> stringDict = new Dictionary<stringstring>();  
  43.             stringDict.Add("len""500");  
  44.             stringDict.Add("wid""300");  
  45.             foreach (byte[] formitembytes in from string key in stringDict.Keys  
  46.                                              select string.Format(stringKeyHeader, key, stringDict[key])  
  47.                                                  into formitem  
  48.                                                  select Encoding.UTF8.GetBytes(formitem))  
  49.             {  
  50.                 memStream.Write(formitembytes, 0, formitembytes.Length);  
  51.             }  
  52.   
  53.             // 寫入最后的結束邊界符  
  54.             memStream.Write(endBoundary, 0, endBoundary.Length);  
  55.   
  56.             //倒騰到tempBuffer?  
  57.             memStream.Position = 0;  
  58.             var tempBuffer = new byte[memStream.Length];  
  59.             memStream.Read(tempBuffer, 0, tempBuffer.Length);  
  60.             memStream.Close();  
  61.   
  62.             // 創建webRequest并設置屬性  
  63.             var webRequest = (HttpWebRequest)WebRequest.Create(postURL);  
  64.             webRequest.Method = "POST";  
  65.             webRequest.Timeout = 100000;  
  66.             webRequest.ContentType = "multipart/form-data; boundary=" + boundary;  
  67.             webRequest.ContentLength = tempBuffer.Length;  
  68.   
  69.             var requestStream = webRequest.GetRequestStream();  
  70.             requestStream.Write(tempBuffer, 0, tempBuffer.Length);  
  71.             requestStream.Close();  
  72.   
  73.             var httpWebResponse = (HttpWebResponse)webRequest.GetResponse();  
  74.             string responseContent;  
  75.             using (var httpStreamReader = new StreamReader(httpWebResponse.GetResponseStream(),Encoding.GetEncoding("utf-8")))  
  76.             {  
  77.                 responseContent = httpStreamReader.ReadToEnd();  
  78.             }  
  79.   
  80.             httpWebResponse.Close();  
  81.             webRequest.Abort();  
  82.   
  83.             context.Response.ContentType = "text/plain";  
  84.             context.Response.Write(responseContent);  
  85.         }  

接收文件

[csharp] view plain copy
  1. public void ProcessRequest(HttpContext context)  
  2.         {  
  3.             context.Response.ContentType = "text/plain";  
  4.             if (context.Request.Files.Count == 0)  
  5.             {  
  6.                 context.Response.Write("No file");  
  7.                 return;  
  8.             }  
  9.   
  10.             HttpPostedFile f1 = context.Request.Files[0];  
  11.             System.Drawing.Image image = System.Drawing.Image.FromStream(f1.InputStream);  
  12.             image.Save("d:\\upload.jpg");  
  13.               
  14.             string strPars="";  
  15.             foreach (var key in context.Request.Form.AllKeys)  
  16.             {  
  17.                 string val = context.Request[key];  
  18.                 strPars += "["+key + ":" + val + "] ";  
  19.             }  
  20.   
  21.             image.Dispose();  
  22.             context.Response.Write("OK Get File:" + f1.FileName + " Pars:" + strPars);  
  23.         }  

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