该 XML 可以用 CSV 表示吗 - Objective C

发布于 2024-10-18 19:57:38 字数 944 浏览 0 评论 0原文

我有以下 XML 结构,我们可以将其转换为 CSV(最适合 Objective-C)

<root>
 <Parent>
  <Name>somename</Name>
  <Age>20</Age>
  <Child>
    <ChildItem1>somevalue</ChildItem1>
    <ChildItem2>somevalue</ChildItem2>
  </Child>
  <Child>
    <ChildItem1>somevalue</ChildItem1>
    <ChildItem2>somevalue</ChildItem2>
  </Child>
 </Parent>
 <Parent>
  <Name>somename</Name>
  <Age>20</Age>
  <Child>
    <ChildItem1>somevalue</ChildItem1>
    <ChildItem2>somevalue</ChildItem2>
  </Child>
  <Child>
    <ChildItem1>somevalue</ChildItem1>
    <ChildItem2>somevalue</ChildItem2>
  </Child>
 </Parent>
</root>

我面临的问题是节点的列表形成。

提前致谢

编辑:我的问题是我需要获取上面的 XML 作为 CSV/Excel 电子表格的结果,但不知道如何在其中创建这种格式的单元格。

I have following structure of an XML can we convert this into a CSV(ideally for Objective-C)

<root>
 <Parent>
  <Name>somename</Name>
  <Age>20</Age>
  <Child>
    <ChildItem1>somevalue</ChildItem1>
    <ChildItem2>somevalue</ChildItem2>
  </Child>
  <Child>
    <ChildItem1>somevalue</ChildItem1>
    <ChildItem2>somevalue</ChildItem2>
  </Child>
 </Parent>
 <Parent>
  <Name>somename</Name>
  <Age>20</Age>
  <Child>
    <ChildItem1>somevalue</ChildItem1>
    <ChildItem2>somevalue</ChildItem2>
  </Child>
  <Child>
    <ChildItem1>somevalue</ChildItem1>
    <ChildItem2>somevalue</ChildItem2>
  </Child>
 </Parent>
</root>

The problem i am facing is with the List formation of the nodes.

Thanks in advance

Edited : My Problem is i need to get the XML above as a result of CSV/Excel spread sheet, but dont know how to create such a format of cells in it.

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

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

发布评论

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

评论(1

猥琐帝 2024-10-25 19:57:38

CSV 描述了数据网格

XML 描述了数据

唯一可以直接转换为 CSV 的 XML 是具有根节点的 XML,其中包含一个或多个相同类型的元素,每个元素都包含与子元素相同数量和类型的元素。

此 XML 不符合该标准,因此您需要制定明确的规则来将数据结构与 CSV 相互转换。如果每个父元素恰好包含两个子元素(这在实际数据中不太可能,但在示例中成立),那么您可以将子元素展平。

CSV describes a grid of data.

XML describes a tree of data.

The only XML that could be directly converted to CSV is one with a root node, containing one or more elements of the same type, each of which contained the same number and types of elements as children.

This XML doesn't fit that criteria, so you would need to come up with explicit rules to convert the data structure to CSV and back. If every parent element contains exactly two child elements (which is unlikely in real data, but holds for the example) then you could just flatten the children.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文