C# 解析json数据出现---锘縖

Posted 高空燕子飞过

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# 解析json数据出现---锘縖相关的知识,希望对你有一定的参考价值。

解析json数据的时候出现 - 锘縖,不知道是不是乱码,反正我是不认识这俩字。后来发现是json的 ‘[‘ 字符转换的

网上搜了一下,说的是字符集不匹配,把字符集改为GB2312。

一、贴下处理json数据的代码,这样处理过之后,就出现  锘縖,原本以为 Encoding.Default.GetString,默认的是GB2312,看来好像不是。

           string pagehtml = "";
            try
            {
                WebClient MyWebClient = new WebClient();
                MyWebClient.Credentials = CredentialCache.DefaultCredentials;//获取或设置用于向Internet资源的请求进行身份验证的网络凭据
                Byte[] pageData = MyWebClient.DownloadData(html); //从指定网站下载数据,url是下载数据的网址
                pageHtml = Encoding.Default.GetString(pageData);  
            }
            catch (WebException webEx)
            {
                Console.WriteLine(webEx.Message.ToString());
            }
            return pageHtml;

二、解决办法:通过字节流读取,格式为GB2312就正常了。

       string pageHtml = "";
            try
            {
                WebClient MyWebClient = new WebClient();
                MyWebClient.Credentials = CredentialCache.DefaultCredentials;//获取或设置用于向Internet资源的请求进行身份验证的网络凭据
                Byte[] pageData = MyWebClient.DownloadData(html); //从指定网站下载数据
                MemoryStream ms = new MemoryStream(pageData);
                using (StreamReader sr = new StreamReader(ms, Encoding.GetEncoding("GB2312")))
                {
                    pageHtml = sr.ReadLine();
                }
            }
            catch (WebException webEx)
            {
                Console.WriteLine(webEx.Message.ToString());
            }
            return pageHtml;

 

以上是关于C# 解析json数据出现---锘縖的主要内容,如果未能解决你的问题,请参考以下文章

C#解析Json

如何在统一 C# 中解析来自 JSON 的数据? [复制]

C#字符串转成JSON对象,并解析出里面的数据

C#将Json解析成DateTable的方法

在 C# 中解析 JSON

C# json解析字符串总是多出双引号