0

以下网址:

http://www.thecage.co.il/online_users.json.js?r=

响应带有一些奇怪字符的字符串(您可以浏览并查看)我正在尝试将其转换为真正的字符串(我知道它应该是希伯来语)。

我的代码:

string html = client.DownloadString(SITE_URL).Replace("\"", string.Empty);
4

1 回答 1

5

将 webclient 的编码设置为 UTF-8:

WebClient client = new WebClient();
client.Encoding = System.Text.Encoding.UTF8;
string html = client.DownloadString(SITE_URL).Replace("\"", string.Empty);
于 2012-11-03T13:03:01.943 回答