|
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 |
void button_Click(object
sender, EventArgs e) { string
Url = "上传地址,服务器端负责接收"; byte[] fbytes; int
Id = 1; string
filename = "text.jpg"; string
emsg = ""; System.Json.JsonObject id = new
System.Json.JsonObject() { //{"fBytes","二进制数据"},{"MemberID","会员ID"},{"fileName","文件名"},{"eMsg",""} {"fBytes",fbytes.ToString()},{"MemberID",Id},{"fileName",filename},{"eMsg",emsg} }; string
up = id.ToString(); try { HttpWebRequest request = WebRequest.Create(Url) as
HttpWebRequest; request.ContentLength = up.Length; request.Method = "POST"; request.ContentType = "application/json"; StreamWriter stOut = new
StreamWriter(request.GetRequestStream(), System.Text.Encoding.Default); stOut.Write(up); stOut.Close(); //request.BeginGetResponse(new AsyncCallback(ProcessRestJSONLINQHttpResponse), request); } catch
(Exception) { throw; } } |
原文:http://www.cnblogs.com/zhahainie/p/3553639.html