在Windows Phone上使用XmlReader读取BIG5编码数据

时间:2012-04-24 23:04:12

标签: c# xml windows-phone-7 character-encoding big5

我正在尝试从此处获取XML内容链接。然后获取“item”元素的内容以在屏幕上显示。这是WP7上的RSS阅读器。问题是当我检查内容时,字节似乎已经用不同的编码方式修改(翻译),这应该使用BIG5,但事实并非如此。但是,本机浏览器确实显示了那些BIG5编码的字符。不知道他们是怎么得到的。

我试过这个

using (XmlReader reader = XmlReader.Create(URL) //URL to a XML file on Internet
while (reader.Read())  // iterate through the document
    switch (reader.NodeType)  
        case XmlNodeType.Text:  
            string s = reader.Value; // The string displayed as garbage

我尝试使用Jesse建议的EncodingGenerator,但这不起作用,因为它不支持多字节编码。

1 个答案:

答案 0 :(得分:1)

我认为不支持BIG5编码通常是Windows Phone的问题,而不是XmlReader的问题。因此,如果切换到HtmlAgilityPack,最终会遇到同样的问题。

查看https://stackoverflow.com/a/10277767/736079以获取可能的解决方案。