gpt4 book ai didi

java - 使用 joox 将修改保存在 xml 文件中

转载 作者:太空宇宙 更新时间:2023-11-04 12:48:05 27 4
gpt4 key购买 nike

我有 xml 文件,我想添加元素并用 joox 保存

我的 xml 文件

    <document>
<library name="Amazon">
<books>
<book id="1">
<name>1984</name>
<authors>
<author>George Orwell</author>
</authors>
</book>
<book id="2">
<name>Animal Farm</name>
<authors>
<author>George Orwell</author>
</authors>
</book>
</books>
</library>
</document>

我的java代码

        File xmlfile = new File("C:\\SiteMap\\Doc.xml");

Document document = $(xmlfile).document();

Match x = $(document).xpath("//book[@id = 1]");
System.out.println(""+x.toString());

//this my modification
x.append("<loc/>");

但现在我想保存此修改我的 Doc.xml 文件

最佳答案

只需使用 $(document).write(xmlfile); 即可覆盖文件。

关于java - 使用 joox 将修改保存在 xml 文件中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36116381/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com