c#上传大文件

客户端代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
/// <summary>
 
       /// 将本地文件上传到指定的服务器(HttpWebRequest方法)
 
       /// </summary>
 
       /// <param name="address">文件上传到的服务器</param>
 
       /// <param name="fileNamePath">要上传的本地文件(全路径)</param>
 
       /// <param name="saveName">文件上传后的名称</param>
 
       /// <returns>服务器反馈信息</returns>
 
       private string Upload_Request(string address, string fileNamePath, string saveName)
       {
 
           // 要上传的文件
 
           FileStream fs = new FileStream(fileNamePath, FileMode.Open, FileAccess.Read);
 
           BinaryReader r = new BinaryReader(fs);
 
 
 
           //时间戳
 
           string strBoundary = "----------" + DateTime.Now.Ticks.ToString("x");
 
           byte[] boundaryBytes = Encoding.ASCII.GetBytes(" --" + strBoundary + " ");
 
 
 
           //请求头部信息
 
           StringBuilder sb = new StringBuilder();
 
           sb.Append("--");
 
           sb.Append(strBoundary);
 
           sb.Append(" ");
 
           sb.Append("Content-Disposition: form-data; name="");
 
           sb.Append("file");
 
           sb.Append(""; filename="");
 
           sb.Append(saveName);
 
           sb.Append(""");
 
           sb.Append(" ");
 
           sb.Append("Content-Type: ");
 
           sb.Append("application/octet-stream");
 
           sb.Append(" ");
 
           sb.Append(" ");
 
 
 
           string strPostHeader = sb.ToString();
 
           byte[] postHeaderBytes = Encoding.UTF8.GetBytes(strPostHeader);
 
 
 
           // 根据uri创建HttpWebRequest对象
 
           HttpWebRequest httpReq = (HttpWebRequest)WebRequest.Create(new Uri(address));
 
           httpReq.Method = "POST";
 
 
 
           //对发送的数据不使用缓存【重要、关键】
 
           httpReq.AllowWriteStreamBuffering = false;
 
 
 
           //设置获得响应的超时时间(300秒)
 
           //httpReq.Timeout = 300000;
 
           httpReq.ContentType = "multipart/form-data; boundary=" + strBoundary;
 
           long length = fs.Length + postHeaderBytes.Length + boundaryBytes.Length;
 
           long fileLength = fs.Length;
 
           httpReq.ContentLength = length;
 
           try
           {
               //每次上传4k
 
               int bufferLength = 4096;
 
               byte[] buffer = new byte[bufferLength];
 
 
 
               //已上传的字节数
 
               long offset = 0;
 
 
 
               //开始上传时间
 
               DateTime startTime = DateTime.Now;
 
               int size = r.Read(buffer, 0, bufferLength);
 
               Stream postStream = httpReq.GetRequestStream();
 
 
 
               //发送请求头部消息
 
               postStream.Write(postHeaderBytes, 0, postHeaderBytes.Length);
 
               while (size > 0)
               {
 
                   postStream.Write(buffer, 0, size);
 
                   offset += size;
 
 
                   TimeSpan span = DateTime.Now - startTime;
                   //1024*1024=1048576
                   size = r.Read(buffer, 0, bufferLength);
 
               }
 
               //添加尾部的时间戳
 
               postStream.Write(boundaryBytes, 0, boundaryBytes.Length);
 
               postStream.Close();
 
 
 
               //获取服务器端的响应
 
               WebResponse webRespon = httpReq.GetResponse();
 
               Stream s = webRespon.GetResponseStream();
 
               StreamReader sr = new StreamReader(s);
 
 
 
               //读取服务器端返回的消息
 
               string serverMsg = sr.ReadLine();
               s.Close();
 
               sr.Close();
 
 
 
           }
 
           catch (Exception ex)
           {
 
 
           }
 
           finally
           {
 
               fs.Close();
 
               r.Close();
 
           }
 
 
 
           return "";
 
       }

 服务端:

1
2
HttpPostedFileBase file = Request.Files[0];
          file.SaveAs(Server.MapPath("~/file/k.iso"));

 客户端调用:

 Upload_Request("http://localhost:7115/test/index", "d:\t.rar", "kk");

原文地址:https://www.cnblogs.com/qiu18359243869/p/10898770.html