处理不同结构和不同名称的xml文件

发布于 2024-08-30 15:40:41 字数 433 浏览 1 评论 0原文

我有一个方法,我希望不同的用户向我传递 xml 文件。对于我正在寻找的元素,这些文件将具有不同的名称,并且我正在寻找的元素可能具有不同的结构。我的第一印象是我们应该告诉他们以标准格式传递 xml。然而,这就是他们获取数据的方式,并且他们坚持认为,如果不需要转换数据,就会容易得多。

我可以做什么来获取所有类型的数据?

他们有通过字典吗? number = mydata/numbers

他们向我定义数据而不实际更改数据的最简单方法是什么?

样品1

<numbers>
15
</numbers>

样品2

<mydata>
<mynumbers>
15
</mynumbers>
</mydata>

I have a method and I want different users to pass me xml files. These files will have different names for the elements I am looking for and the elements I am looking for maybe at different structures. My first impression was that we should just tell them to pass in the xml in a standard format. However this is how they have their data and they insist that it is much easier if they don't have to convert it.

What can I do to take in data of all types?

Have them pass in a dictionary?
number = mydata/numbers

What is the easiest way for them to define their data to me without actually changing it?

sample1

<numbers>
15
</numbers>

sample2

<mydata>
<mynumbers>
15
</mynumbers>
</mydata>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

捎一片雪花 2024-09-06 15:40:41

LINQ to XML 可以非常轻松地处理不同格式的文档。例如,此查询将获取您提到的两个文档的“15”:

XDocument doc = XDocument.Load("input.xml");
var result = doc.Descendants().Where(e => e.Name.ToString().Contains("numbers"));

LINQ to XML can handle documents of varying format quite easily. For example this query will get the "15" for both the documents you mentioned:

XDocument doc = XDocument.Load("input.xml");
var result = doc.Descendants().Where(e => e.Name.ToString().Contains("numbers"));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文