合并多个 XML 文件
我可以使用什么语言来组合多个 XML 文件。多个为 10 多个文件。
PHP、java 还是什么?
我尝试使用 XSLT,但我不知道是否需要像 Saxon 这样的“处理器”。
这些文档令人困惑,因为我不知道从哪里开始。
总而言之,我需要有人为我指明正确的方向。
请有人帮忙。我已经尝试解决这个问题好几天了
<xml version="1.0">
<products>
<price>Price List Here</price>
<model>Model Number Here</model>
</product>
What language can I use to combine multiple XML files. Multiple as 10+ files.
PHP, java, or what?
I tried to use XSLT but I do not know if I need a 'processor' such as Saxon.
The docs were to confusing as I did not know where to start.
All in all, I need someone to point me in the right direction.
Someone please help. I've been trying to figure this out for days
<xml version="1.0">
<products>
<price>Price List Here</price>
<model>Model Number Here</model>
</product>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这可以在纯 XSLT 中轻松完成:
上面的代码处理两个 XML 文档,但可以扩展以处理任何预先已知数量的 XML 文档。
说明:
将 XML 文档的 URL 作为全局/外部参数传递给转换。
使用标准 XSLT 函数
document()
。
This can be done easily in pure XSLT:
The code above deals with two XML documents, but can be extended to deal with any, known in advance number of XML documents.
Explanation:
Passing the URLs for the XML documents as global/external parameters to the transformation.
Use of the standard XSLT function
document()
.您可以使用任何允许您直接操作 xml 的语言。我建议寻找 DOM 而不是 SAX 的东西。如果您使用 SAX,您基本上必须自己遍历 xml - 根据我的经验,这是一个皮塔饼。 DOM 允许您以更加 OOP 的方式对 xml 进行操作。
立即浮现在脑海中的可能是 xml“文档”的包装器 xml。
所以类似:
伪代码将是:
创建文档根目录。
添加一个名为“文档”的元素,并将其用作根。
迭代每个 xml 文件。
为每个文件创建一个名为 document 的新元素。将该元素添加到父元素。从文件加载 xml。将该节点导入到外部文档中。将导入的节点追加到文档元素子集合中。
编辑
正如这里所承诺的,这是经过测试的更新代码,我知道它可以工作:
You can use any language that allows you to manipulate xml directly. I suggest finding something with DOM rather than SAX. If you use SAX you have to basically traverse the xml yourself - a pita in my experience. DOM allows you to act on the xml in a more OOP manner.
Something that springs immediately to mind would be a wrapper xml around your xml "documents".
So something like:
The pseudo code would be:
Create a document root.
Add an element called documents, use that as the root.
Iterate each of your xml files.
For each file create a new element called document. Add that element to the parent. Load the xml from the file. Import that node into the outer document. Append the imported node into the document elements child collection.
EDIT
As promised here is the updated code that was tested and I know works: