这是对这一问题的后续行动:。 • 如何将XML装入数据表?
我想读到因特网上的XML文件,以备数据。 The XML file is here:
如果是:
public DataTable GetCurrentFxPrices(string url)
{
WebProxy wp = new WebProxy("http://mywebproxy:8080", true);
wp.Credentials = CredentialCache.DefaultCredentials;
WebClient wc = new WebClient();
wc.Proxy = wp;
MemoryStream ms = new MemoryStream(wc.DownloadData(url));
DataSet ds = new DataSet("fxPrices");
ds.ReadXml(ms);
DataTable dt = ds.Tables["Rate"];
return dt;
}
罚款。 我在努力如何使用因特网探索者中设定的默认代理。 我不想硬化代理人。 如果互联网探索者没有指定代理,我也希望该守则发挥作用。