Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有允许根据配置自动编辑 XML 文件的 java 工具?
假设,我想在文件中的<foo>hello</foo>每个标签之后添加标签<boo>。
<foo>hello</foo>
<boo>
我希望有一个工具,我可以在其中配置文本和位置(在标记之后,进入标记),并且该工具会自动编辑目标 XML 文件。
查看XSLT样式表 - 您可以定义将 XML 转换为另一种(可能是非 XML)格式的规则。xsltproc是一个命令行工具,用于将 XSLT 转换应用于 XML 文件。还有基于 GUI 的工具,但我不推荐任何工具。