gpt4 book ai didi

android - 将json保存到android中的数组键值

转载 作者:行者123 更新时间:2023-11-29 14:51:24 25 4
gpt4 key购买 nike

我对 json 有疑问。我从服务器收到此响应:

{"TESTS":true,"TESTS_VIEW":true,"ORDER":true,"PARAMETERS":true,"VIEW":true}

我如何将这些数据保存在数组或其他东西中以具有模式:键 - 值?

最佳答案

嗯,我不确定我明白你为什么想要这个。 JSONObject正是这样,看看JSONObject.get() :

JSONObject json = new JSONObject(yourjsonstringfromserver);
boolean tests = json.getBoolean("TESTS");

不过,如果您想遍历所有值,您可以这样做:

Map<String, Object> map = new HashMap<String, Object>();
Iterator<String> keys = json.keys();
for(String key : keys) {
try {
Object value = json.get(key);
map.put(key, value);
}
catch (JSONException e) {
// Something went wrong!
}
}

关于android - 将json保存到android中的数组键值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17145219/

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