public DataSet GetData(string httpUrl)
{
string xmlPath = @"http地址"; // 该地址に中文を含めることはできません
DataSet ds = 新しい DataSet();
WebClient wc = new WebClient();
byte[] bt = wc.DownloadData(xmlPath);
XmlDocument xd = 新しい XmlDocument();
文字列ソース = Byte2String(bt);
xd.LoadXml(ソース);
XmlNodeReader xnr = 新しい XmlNodeReader(xd);
ds.ReadXml(xnr);
DataTable dt = ds.Tables[0];
this.DataGrid1.DataSource = ds;
this.DataGrid1.DataBind();
DSを返します。
}
public static string Byte2String(byte[] bt)
{
System.Text.Encoding エンコーディング = System.Text.Encoding.GetEncoding("gb2312");
文字列 str = エンコーディング.GetString(bt);
文字列を返します。
}