gpt4 book ai didi

android - 不同设备上的 JSONArray 奇怪输出

转载 作者:行者123 更新时间:2023-11-29 00:10:50 24 4
gpt4 key购买 nike

你好,我有以下字符串

 [{"SUBSCRIBERID":"151-52-049","LONG":"46.69127274","LAT":"24.70912743"},{"SUBSCRIBERID":"151-29-016","LONG":46.69570000","LAT":"24.70770000"}]

我正在将这个字符串转换为 JSONArray

JSONArray jsonArrr = new JSONArray(String);

然后循环数组并获取 JSONObject

for (int h = 0; h < jsonArrr.length(); h++) {

jsonObj = jsonArrr.getJSONObject(h);
Iterator<String> iter = jsonObj.keys();
Object valuee = "";
String key = iter.next();
Log.e(TAG, "key is: " + key);
try {

valuee = jsonObj.get(key);
Log.e(TAG, "key: " + key + "---value: " + valuee); //on htc key is SUBSCRIBERID and its value while on samsung key is LONG and its valuee!!
} catch (JSONException e) {

Log.e(TAG,"SOME ERROR: "+e);
}

在此 for 循环中,检索到的值是每个对象中的第一个值。在我的 HTC 手机上,第一个值正确显示为 SUBSCRIBERID 在三星设备上购买的值,第一个值显示为 LONG。

如有任何帮助,我们将不胜感激!

最佳答案

键的顺序未定义。因此,如果您在不同的设备上执行代码,您可能会看到不同顺序的键。 REF

Returns an iterator of the String names in this object. The returned iterator supports remove, which will remove the corresponding mapping from this object. If this object is modified after the iterator is returned, the iterator's behavior is undefined. The order of the keys is undefined.

关于android - 不同设备上的 JSONArray 奇怪输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30253504/

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