• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

C#HttpRequest中文编码问题

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

工作中的项目要用到别家的网络短信平台,工作中遇到中文编码的问题,特总结以备忘。

GET方法:

 

public string DoWebRequest(string url)
        {
            HttpWebResponse webResponse = null;
            HttpWebRequest webRequest = (HttpWebRequest)WebRequest.Create(url);
            webRequest.Method = "POST";
            string responseStr = null;
            webRequest.Timeout = 50000;
            webRequest.ContentType = "text/html; charset=gb2312";
            try
            {
                //尝试获得要请求的URL的返回消息
                webResponse = (HttpWebResponse)webRequest.GetResponse();
            }
            catch (WebException e)
            {
                //发生网络错误时,获取错误响应信息
                responseStr = "发生网络错误!请稍后再试";
            }
            catch (Exception e)
            {
                //发生异常时把错误信息当作错误信息返回
                responseStr = "发生错误:" + e.Message;
 
            }
            finally
            {
                if (webResponse != null)
                {
                    //获得网络响应流
                    using (StreamReader responseReader = new StreamReader(webResponse.GetResponseStream(), Encoding.GetEncoding("GB2312")))
                    {
                        responseStr = responseReader.ReadToEnd();//获得返回流中的内容
                    }
                    webResponse.Close();//关闭web响应流
                }
            }
            return responseStr;
        }

注意:url中的中文,要先用HttpUtility.UrlEncode("内容",编码) 用服务器接收的编码,编码一下。

POST方法:

 

  private string DoWebRequestByPost(string url, string param)
        {
            HttpWebResponse webResponse = null;
            HttpWebRequest webRequest = (HttpWebRequest)WebRequest.Create(url);
            //使用post方式提交
            webRequest.Method = "POST";
            string responseStr = null;
            webRequest.Timeout = 50000;
            //要post的字节数组
            byte[] postBytes = encoding.GetBytes(param);
            
            webRequest.ContentType = "application/x-www-form-urlencoded;";
            webRequest.ContentLength = postBytes.Length;
 
            using (Stream reqStream = webRequest.GetRequestStream())
            {
                reqStream.Write(postBytes, 0, postBytes.Length);
            }
            try
            {
                //尝试获得要请求的URL的返回消息
                webResponse = (HttpWebResponse)webRequest.GetResponse();
            }
            catch (Exception)
            {
                //出错后直接抛出
                throw;
            }
            finally
            {
                if (webResponse != null)
                {
                    //获得网络响应流
                    using (StreamReader responseReader = new StreamReader(webResponse.GetResponseStream(), encoding))
                    {
                        responseStr = responseReader.ReadToEnd();//获得返回流中的内容
                    }
                    webResponse.Close();//关闭web响应流
                }
            }
            return responseStr;
        }
encoding为服务器接收的编码,例如:Encoding.GetEncoding("GBK")等
param post请求的参数 param1=123&param2=中国&param3=abc 这样的格式,中文部分不用使用编码,方法内转成byte[]时
会进行编码。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
c++动态库中使用命名空间的问题发布时间:2022-07-14
下一篇:
C#委托和事件发布时间:2022-07-14
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap