在 C# 中合并 XMLTextReaders
我有一个网站需要从两个不同的 XML 数据源提取信息。 最初,我只需要从一个来源获取数据,因此我在后端构建了一个 URL,该 URL 从 XML 站点检索数据,然后在网站的前端解析并呈现它。
现在我必须使用第二个数据源并将结果集(具有相同结构的 XML)合并到一个结果集中。
以下是我当前用于获取一个 XML 提要的代码。
sUrl = sbUrl.ToString(); //XML feed 的 URL
XmlDocument xDoc = new XmlDocument();
StringBuilder oBuilder = new StringBuilder(); //The parsed HTML output
XmlTextReader oXmlReader = new XmlTextReader(sUrl);
oXmlReader.Read();
xDoc.Load(oXmlReader);
XmlNodeList List = xDoc.GetElementsByTagName("result");
foreach (XmlNode node in List)
{
XmlElement key = (XmlElement)node;
//BUILD THE OUTPUT HERE
}
提前感谢您的帮助。
I have a website that needs to pull information from two diffferent XML data sources.
Originally I only need to get the data from one source so I was building a URL in the backend that went and retrieved the data from the XML site and then parsed and rendered it in the front end of the website.
Now I have to use a 2nd data source and merge the result sets (which are identically structured XML) into one result set.
Here is the code I am currently using to get one XML feed.
sUrl = sbUrl.ToString(); //The URL for the XML feed
XmlDocument xDoc = new XmlDocument();
StringBuilder oBuilder = new StringBuilder(); //The parsed HTML output
XmlTextReader oXmlReader = new XmlTextReader(sUrl);
oXmlReader.Read();
xDoc.Load(oXmlReader);
XmlNodeList List = xDoc.GetElementsByTagName("result");
foreach (XmlNode node in List)
{
XmlElement key = (XmlElement)node;
//BUILD THE OUTPUT HERE
}
Thanks in advance for your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用:
You can use: