从俄罗斯网站读取XML时遇到编码问题

时间:2015-01-10 14:07:59

标签: c# asp.net .net encoding

我从俄罗斯银行的网络服务获取xml中的值(来源:http://www.cbr.ru/scripts/XML_daily.asp

我的ASP.NET代码:

<%@ Page   Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebApplication4.WebForm1" CodePage="65001"  %>

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
    <title></title>
</head>
<body>
<form id="form1" runat="server">
<asp:GridView ID="volutes" runat="server" >
<HeaderStyle BackColor="#df5015" Font-Bold="true" ForeColor="White" />
</asp:GridView>
</form>
</body>
</html>

我的C#代码:

            DataTable dt = new DataTable();
            WebClient client = new WebClient();
            Stream stream = client.OpenRead("http://www.cbr.ru/scripts/XML_daily.asp");
            StreamReader reader = new StreamReader(stream);
            String content = reader.ReadToEnd();
            XmlDocument xml = new XmlDocument();
            xml.LoadXml(content);


            dt.Columns.Add("Name", typeof(string));
            dt.Columns.Add("Value", typeof(string));
            XmlNodeList nodeList = xml.SelectNodes("/ValCurs/Valute");
            foreach (XmlNode node in nodeList)
            {
                DataRow dtrow = dt.NewRow();
                dtrow["Name"] = node["Name"].InnerText;
                dtrow["Value"] = node["Value"].InnerText;
                dt.Rows.Add(dtrow);
            }
            volutes.DataSource = dt;
            volutes.DataBind();

Оn结果页面我看到了:

 Name                                 Value
������������� ������    46,0642

为什么?

1 个答案:

答案 0 :(得分:5)

您应该使用StreamReader的正确编码并在constructor中传递,否则读者默认使用UTF-16 LE:

using (StreamReader reader = new StreamReader( stream
                                             , Encoding.GetEncoding("windows-1251")
                                             )
      )
{
}
相关问题