这是xml示例
<credentials>
<user>Jack</user>
<password>123</password>
<user>Marcus</user>
<password>456</password>
<tag>
</tag>
<test>abc</test>
<details>def</details>
</credentials>
我想将“测试”和“详细信息”标签移到“标签”中。
这是理想的结果
<credentials>
<user>Jack</user>
<password>123</password>
<user>Marcus</user>
<password>456</password>
<tag>
<test>abc</test>
<details>def</details>
</tag>
</credentials>
我该如何使用Java DOM解析器做到这一点?