我想加載xml文件,但是有特殊符號:ąčęėįšųū
和我得到錯誤Invalid character in the given encoding.
問題是如何在加載xml之前編碼這個字符?c#xml特殊字符編碼
// load xml result from Google weather
XDocument xd = XDocument.Load("http://www.google.com/ig/api?weather=vilnius&hl=ru");
我想加載xml文件,但是有特殊符號:ąčęėįšųū
和我得到錯誤Invalid character in the given encoding.
問題是如何在加載xml之前編碼這個字符?c#xml特殊字符編碼
// load xml result from Google weather
XDocument xd = XDocument.Load("http://www.google.com/ig/api?weather=vilnius&hl=ru");
我想試試這個
WebClient cln = new WebClient();
var str = cln.DownloadString("http://www.google.com/ig/api?weather=vilnius&hl=ru");
XDocument xDoc = XDocument.Load(new StringReader(str));
謝謝,幹得好,工作完美;) – Wizard