如何在C#中从HttpWebResponse读取阿拉伯字符

时间:2018-05-21 20:10:43

标签: c# httpwebrequest arabic httpwebresponse responsestream

我正在尝试在C#Application中读取我的firebase数据库,我正在使用HttpWebRequest和响应来获取数据。

firebase中的数据是阿拉伯语,当我在C#应用程序中获取它时,我看到了??????代替

我的代码:

static void Main()
    {
        int i = 0;
        Console.WriteLine("here1");
        while (i < 15)
        {
            Console.WriteLine("here0");
            string URL = "<firebasePath>/.json";
            HttpWebRequest request = (HttpWebRequest)WebRequest.Create(URL);
            //request.ContentType = "application/json: charset=utf-8";
            //request.UserAgent = "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1);Accept-Language:ar";
            HttpWebResponse response = request.GetResponse() as HttpWebResponse;
            using (Stream responsestream = response.GetResponseStream())
            {
                StreamReader read = new StreamReader(responsestream, Encoding.UTF8);
                Console.WriteLine(read.ReadToEnd());
               Console.WriteLine("herehere");

                        }
                      i++;
                }
    }

注释掉的列意味着我已经尝试过这个解决方案并且不适合我。

输出示例:

  

{“1964”:{“2018-05-08 10:48:33”:{“activityOneQuestion”:“?????????????????????? ???? “ ”activityTwoQuestion“:” ?? ...

我如何阅读阿拉伯字母?

非常感谢!!

1 个答案:

答案 0 :(得分:0)

感谢@VahidN在评论中给出了答案,我只想在这里写一下,这样每个人都可以更容易地看到它。

答案:

  

Console.WriteLine无法显示Unicode字符。将其保存到文件并检查它

那很有用。 谢谢!