我有一个这样的 xml 文件。我正在使用java。
<ui>
<profile name="aaa">
<country>India</country>
</profile>
<profile name="xxx">
<country>India</country>
</profile>
</ui>
我想在节点配置文件中附加一个具有属性“aaa”的子节点。我有一个这样的 xml 字符串
"<gender>Male</gender><age></age>"
预期输出:
<ui>
<profile name="aaa">
<country>India</country>
<gender>Male</gender>
<age></age>
</profile>
<profile name="xxx">
<country>India</country>
</profile>
</ui>
我使用xpath来查找属性为 "aaa" 的配置文件元素 /ui/profile[@name='aaa']
。但是,我不知道如何将子节点附加到其中。