0
以下網址:如何將UTF-8字符轉換爲字符串?
與一些奇怪的字符的字符串(你可以瀏覽和看) 我試圖將其轉換爲一個真正的串做出響應(我知道這應該希伯來語)。
我的代碼:
string html = client.DownloadString(SITE_URL).Replace("\"", string.Empty);
以下網址:如何將UTF-8字符轉換爲字符串?
與一些奇怪的字符的字符串(你可以瀏覽和看) 我試圖將其轉換爲一個真正的串做出響應(我知道這應該希伯來語)。
我的代碼:
string html = client.DownloadString(SITE_URL).Replace("\"", string.Empty);
設置Web客戶端的編碼設置爲UTF-8:
WebClient client = new WebClient();
client.Encoding = System.Text.Encoding.UTF8;
string html = client.DownloadString(SITE_URL).Replace("\"", string.Empty);
看起來不錯給我。有些希伯來人,就是這樣。 – Oded
難道你沒有看到{「UserName」:「×ורי×ן」,? @Oded – benams
沒有。我在希伯來文中看到了諸如「維羅尼卡」(Veronique)之類的東西。看看你的瀏覽器頁面的語言設置。 – Oded