gpt4 book ai didi

android - 如何在 android 中将游标对象转换为 XML 或 JSON

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:08:51 24 4
gpt4 key购买 nike

是否有任何库可用于将 Cursor 对象转换为直接 XML 或 JSON。

例如,我们有一个包含两列 id、name 的表。当我从数据库中获取游标对象时。没有循环游标我想把它转换成

<XML>
<id>1<id>
<name>xyz</name>
</XML>

提前致谢。

最佳答案

使用这个:

JSONArray array = new JSONArray();
if (cursor != null && cursor.getCount() > 0) {
while (cursor.moveToNext()) {
JSONObject object = new JSONObject();
try {
object.put("id", cursor.getString(0));
object.put("name", cursor.getString(1));
array.put(object);
} catch (JSONException e) {
e.printStackTrace();
}

}

如果你想创建一个 XML 数据而不是使用这个:Link .希望对您有所帮助。

关于android - 如何在 android 中将游标对象转换为 XML 或 JSON,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23440072/

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