gpt4 book ai didi

android - 如何在 android 中对单个 xml 节点进行编辑

转载 作者:行者123 更新时间:2023-11-29 14:01:57 28 4
gpt4 key购买 nike

我需要一种快速的方法来将编辑保存到 xml 文件中,如果有任何示例,我将不胜感激 我假设这将使用 xpath?谢谢

[编辑] 我目前正在使用 documentBuilder.parse() 但这需要很长时间,大约需要 20 秒才能读取文件

最佳答案

我可以在 QT 中给你举个例子..我不知道你在用什么语言工作。这是 QT 的:

QDomDocument doc("MyML");
QDomElement root = doc.createElement("MyML");
doc.appendChild(root);

QDomElement tag = doc.createElement("Greeting");
root.appendChild(tag);

QDomText t = doc.createTextNode("Hello World");
tag.appendChild(t);

QString xml = doc.toString();

如果我没听懂你的意思,请回复。也许我们可以解决这个问题。

关于android - 如何在 android 中对单个 xml 节点进行编辑,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9086674/

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