欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C#中在WebClient中使用post发送数据实现方法

程序员文章站 2024-02-19 12:06:22
很多时候,我们需要使用c#中的webclient 来收发数据,webclient 类提供向 uri 标识的任何本地、intranet 或 internet 资源发送数据以及...

很多时候,我们需要使用c#中的webclient 来收发数据,webclient 类提供向 uri 标识的任何本地、intranet 或 internet 资源发送数据以及从这些资源接收数据的公共方法。本文就较为详细的说明了webclient中使用post发送数据实现方法。

下面先说说webclient 最主要的功能。

webclient 构造函数

.ctor 包括 一个空构造函数 和一个静态构造函数, 静态构造函数主要为urlencode 和urlencodeandwirte 编码提供参照byte[]数据的初始化作用。如下所示:

stati webclient()

public webclient() 

webclient提供四种将数据上载到资源的方法:

openwrite 返回一个用于将数据发送到资源的 stream。
uploaddata 将字节数组发送到资源并返回包含任何响应的字节数组。
uploadfile 将本地文件发送到资源并返回包含任何响应的字节数组。
uploadvalues 将namevaluecollection 发送到资源并返回包含任何响应的字节数组。

webclient还提供三种从资源下载数据的方法:

downloaddata 从资源下载数据并返回字节数组。
downloadfile 从资源将数据下载到本地文件。
openread 从资源以 stream 的形式返回数据。

了解了webclient的知识后,我们开始正式进入正题。
通过post方式发送数据可以避免get方式的数据长度限制,下面采用webclient来实现这个功能。web服务端可以是任何cgi但是要搞清楚web端接受的编码,代码如下:

webclient wc = new webclient();
stringbuilder postdata = new stringbuilder();
postdata.append("formfield1=" + "表单数据一");
postdata.append("&formfield2=" + "表单数据二");
postdata.append("&formfield3=" + "表单数据三");
//下面是gb2312编码
byte[] senddata = encoding.getencoding("gb2312").getbytes(postdata.tostring());
wc.headers.add("content-type", "application/x-www-form-urlencoded");
wc.headers.add("contentlength", senddata.length.tostring());
byte[] recdata= wc.uploaddata("http://www.domain.cn/services/dataimport1.asp","post",senddata);
//显示返回值注意编码
messagebox.show(encoding.getencoding("gb2312").getstring(recdata));

注意"表单数据x"中包含如 "&","=","+"时需要使用,
httputility.urlencode( "+++xxx为什么不编码也可以",encoding.getencoding("gb2312")) 进行编码
httputility.urlencode(string) 默认使用utf-8进行编码,因此使用 urlencode编码时并且字段里有中文,并且目标网站使用gb2312时,需要在urlencode函数中指明使用gb2312
这样上面的拼接代码可以修改为如下:

postdata.append("formfield1=" + httputility.urlencode("表单数据一",encoding.getencoding("gb2312")));
postdata.append("&formfield2=" + httputility.urlencode("表单数据二",encoding.getencoding("gb2312")));