-2
我正在使用XML。 我收到像這樣的XML:從XML設置響應編碼
<ajax-response>
<response>
<item>
<number></number>
<xxx>N?o ok</xxx>
<error>null</error>
</item>
</response>
</ajax-response>
對XXX值爲「NAO OK」,但如何,我從轉換爲「NAO OK」「NØ好嗎?」?
我知道編碼是utf8(1252),但是如何在輸出xml中設置它?
我tryed在請求中設置:
client.Encoding = Encoding.UTF8;
但不工作。 在此先感謝!
什麼是utf8(1252)肯定是utf8或windows 1252但不是兩者都是 – Mark
爲什麼-2? @calos:是的,我從遠程服務器讀取XML .. –