- 积分
- 40165
- 好友
- 记录
- 主题
- 帖子
- 听众
- 收听
|
发表于 2013-6-21 17:13:03
|
显示全部楼层
这个是你Post的数据编码不正确,这是Httphelper的一个Bug,目前只能手动进行修改,
你可以手动修改下编码,我七月初更新时会修复下。
修改Httphelper类如下方法[code=csharp] /// <summary>
/// 设置Post数据
/// </summary>
/// <param name="objhttpItem">Http参数</param>
private void SetPostData(HttpItem objhttpItem)
{
//验证在得到结果时是否有传入数据
if (request.Method.Trim().ToLower().Contains("post"))
{
byte[] buffer = null;
//写入Byte类型
if (objhttpItem.PostDataType == PostDataType.Byte && objhttpItem.PostdataByte != null && objhttpItem.PostdataByte.Length > 0)
{
//验证在得到结果时是否有传入数据
buffer = objhttpItem.PostdataByte;
}//写入文件
else if (objhttpItem.PostDataType == PostDataType.FilePath && !string.IsNullOrEmpty(objhttpItem.Postdata))
{
StreamReader r = new StreamReader(objhttpItem.Postdata, encoding);
buffer = Encoding.Default.GetBytes(r.ReadToEnd());
r.Close();
} //写入字符串
else if (!string.IsNullOrEmpty(objhttpItem.Postdata))
{
buffer = Encoding.Default.GetBytes(objhttpItem.Postdata);
}
if (buffer != null)
{
request.ContentLength = buffer.Length;
request.GetRequestStream().Write(buffer, 0, buffer.Length);
}
}
}[/code]
找到这个方法
//写入字符串
else if (!string.IsNullOrEmpty(objhttpItem.Postdata))
{
buffer = Encoding.Default.GetBytes(objhttpItem.Postdata);
}把这里的Encoding.Default修改成你对应的编码就行了。
|
|