从 java List 对象创建 XML 的最有效方法
我正在努力将 CSV 转换为 XML,尽管我有很多方法可以做到这一点,但我的要求是这样做,以便将来可以在不更改任何代码的情况下更改映射。
所以我们使用以下方法。
我们使用 Apache Camel 进行集成,因此 CSV 通过 Camel 进行开箱即用的转换,并以 List
的形式提供
对于数据,>
{[header1,header2,header3],[1,2,3],[2,4,5]}
我需要将此列表数据转换为 XML 是定义的形式,但由于我无法使用 java 映射,所以计划做类似的事情 使用 XStream 将此列表转换为平面 XML 文件,然后使用 xslt 将原始 XML 文件映射到 xslt,但是当我使用 XStream 将列表转换为 XML 时,它会给出以下输出,
<list>
<java.util.Arrays_-ArrayList>
<a class="string-array">
<string>Quantity</string>
<string>Price</string>
<string>Total</string>
<string>Date</string>
<string>ID</string>
<string>Name</string>
<string>Ref#</string>
</a>
</java.util.Arrays_-ArrayList>
<java.util.Arrays_-ArrayList>
<a class="string-array">
<string>4</string>
<string>1.13</string>
<string>4.52</string>
<string>9/4/2008</string>
<string>275</string>
<string>Blue Ink</string>
<string>49385730</string>
</a>
</java.util.Arrays_-ArrayList>
<java.util.Arrays_-ArrayList>
<a class="string-array">
<string>5</string>
<string>2.16</string>
<string>2.16</string>
<string>8/3/2008</string>
<string>229</string>
<string>Red Ink</string>
<string>20549348</string>
</a>
我的示例 CSV 是
Quantity,Price,Total,Date,ID,Name,Ref#
4,1.13,4.52,9/4/2008,275,Blue Ink,49385730
5,2.16,2.16,8/3/2008,229,Red Ink,20549348
因此似乎不可能使用 XSLT 将这个原始 XML 映射到所需的 XML。 有没有办法将此列表数据转换为某种更美观的 XML 格式,以便我们可以使用 XSLT 映射该 XML 以避免任何代码更改。 或者是否有其他更有效的方法将此列表转换为 XML 结构
提前致谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
生成的 XML 的描述方式(标头成为元素标签),如果没有自定义编程,确实很难生成。最好的选择是使用 DOM4J 自己编写一些代码。
The way how the generated XML is described (headers become the element tags), it is really hard to generate without custom programming. The best bet would be to write some code yourself using DOM4J.
这比我想象的更复杂,主要是由于列表输入:
这将为您提供:
容器:
标题:
和行项目:
This was more complex than I thought, mostly due to the List input:
This will give you:
Container:
Headers:
and LineItems:
我认为 XSLT 可以完成这项工作:
您可以使用 xslt 的 position() 函数来当您迭代所有列表条目时,导航到第一个列表条目中的右侧列标识符。
I think XSLT can do the job:
You can use the position() function of xslt to navigate to the right column identifier within the first list entry when you iterate over all the list entries.