该 XML 可以用 CSV 表示吗 - Objective C
我有以下 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.