将包转换为JSON

sqougxex  于 2023-01-27  发布在  其他
关注(0)|答案(6)|浏览(176)

我想将Intent的extras Bundle转换为JSONObject,这样我就可以将其传递给JavaScript或从JavaScript传递。
有没有一个快速或最好的方法来做这个转换?这将是好的,如果不是所有可能的捆绑将工作。

4zcjmb1e

4zcjmb1e1#

你可以使用Bundle#keySet()来获取一个Bundle包含的键列表,然后你可以迭代这些键,并将每个键值对添加到一个JSONObject中:

JSONObject json = new JSONObject();
Set<String> keys = bundle.keySet();
for (String key : keys) {
    try {
        // json.put(key, bundle.get(key)); see edit below
        json.put(key, JSONObject.wrap(bundle.get(key)));
    } catch(JSONException e) {
        //Handle exception here
    }
}

注意,JSONObject#put将要求您捕获JSONException

    • 编辑:**

有人指出,前面的代码没有很好地处理CollectionMap类型。如果您使用API 19或更高版本,有一个JSONObject#wrap方法可以帮助您,如果这对您很重要。
如有必要, Package 对象。如果对象为空,则返回NULL对象。如果对象为数组或集合,则将其 Package 在JSONArray中。如果对象为Map,则将其 Package 在JSONObject中。如果对象为标准属性(Double,String,et al),那么它已经被 Package 了。否则,如果它来自某个java包,就把它变成一个字符串。如果它不是,尝试将其 Package 在JSONObject中,如果 Package 失败,则返回null。

bxgwgixi

bxgwgixi2#

private String getJson(final Bundle bundle) {
    if (bundle == null) return null;
    JSONObject jsonObject = new JSONObject();

    for (String key : bundle.keySet()) {
        Object obj = bundle.get(key);
        try {
            jsonObject.put(key, wrap(bundle.get(key)));
        } catch (JSONException e) {
            e.printStackTrace();
        }
    }
    return jsonObject.toString();
}

public static Object wrap(Object o) {
    if (o == null) {
        return JSONObject.NULL;
    }
    if (o instanceof JSONArray || o instanceof JSONObject) {
        return o;
    }
    if (o.equals(JSONObject.NULL)) {
        return o;
    }
    try {
        if (o instanceof Collection) {
            return new JSONArray((Collection) o);
        } else if (o.getClass().isArray()) {
            return toJSONArray(o);
        }
        if (o instanceof Map) {
            return new JSONObject((Map) o);
        }
        if (o instanceof Boolean ||
                o instanceof Byte ||
                o instanceof Character ||
                o instanceof Double ||
                o instanceof Float ||
                o instanceof Integer ||
                o instanceof Long ||
                o instanceof Short ||
                o instanceof String) {
            return o;
        }
        if (o.getClass().getPackage().getName().startsWith("java.")) {
            return o.toString();
        }
    } catch (Exception ignored) {
    }
    return null;
}

public static JSONArray toJSONArray(Object array) throws JSONException {
    JSONArray result = new JSONArray();
    if (!array.getClass().isArray()) {
        throw new JSONException("Not a primitive array: " + array.getClass());
    }
    final int length = Array.getLength(array);
    for (int i = 0; i < length; ++i) {
        result.put(wrap(Array.get(array, i)));
    }
    return result;
}
llmtgqce

llmtgqce4#

如果bundle有嵌套的bundle,那么JSONObject.wrap(bundle.get(key))将返回null。所以我设法让它在我的用例中使用这个递归函数。虽然还没有测试更高级的用例。

JSONObject json = convertBundleToJson(bundle);

public JSONObject convertBundleToJson(Bundle bundle) {
    JSONObject json = new JSONObject();
    Set<String> keys = bundle.keySet();

    for (String key : keys) {
        try {
            if (bundle.get(key) != null && bundle.get(key).getClass().getName().equals("android.os.Bundle")) {
                Bundle nestedBundle = (Bundle) bundle.get(key);
                json.put(key, convertToJson(nestedBundle));
            } else {
                json.put(key, JSONObject.wrap(bundle.get(key)));
            }
        } catch(JSONException e) {
            System.out.println(e.toString());
        }
    }

    return json;
}
nbewdwxp

nbewdwxp5#

Object myJsonObj = bundleObject.get("yourKey");
JsonParser parser = new JsonParser();
JsonObject json = parser.parse(myJsonObj.toString()).getAsJsonObject();
json.get("memberInJson").getAsString();
zhte4eai

zhte4eai6#

private static void createFlatJSon(Bundle appRestrictions, JSONObject jsonObject) throws JSONException{
    for (String key : appRestrictions.keySet()) {
        if (appRestrictions.get(key) instanceof Bundle) {
           Bundle bundle = (Bundle)appRestrictions.get(key);
            Map<String, String> map = ((Bundle)appRestrictions.get(key)).keySet().stream().collect(Collectors.toMap(x -> x, x -> bundle.get(x).toString()));
            JSONObject jsonNested = new JSONObject(map);
            jsonObject.put(key,jsonNested);
            //createFlatJSon((Bundle) appRestrictions.get(key),jsonObject);
        }else if (appRestrictions.get(key) instanceof Parcelable[]){
            for (int i=0;i< ((Parcelable[]) appRestrictions.get(key)).length; i++){
                createFlatJSon((Bundle)((Parcelable[]) appRestrictions.get(key))[i],jsonObject);
            }
            //Log.e("KEY skipped",appRestrictions.get(key).toString());
        }else{
            // map = appRestrictions.keySet().stream().collect(Collectors.toMap(x -> x, x -> appRestrictions.get(x).toString()));// Use this if don't want to modify the keys
            Log.e("KEY: ", key + " Value:" + appRestrictions.getString(key));
            Log.e("KEY: ", key + " Value:" + appRestrictions.get(key).getClass().getSimpleName());
            if (appRestrictions.get(key) instanceof String[]){
                JSONArray jsonArray = new JSONArray();
                for (String value : (String[])appRestrictions.get(key)) {
                    jsonArray.put(value);
                }
                jsonObject.put(key,jsonArray);
            }else {
                 jsonObject.put(key, appRestrictions.get(key).toString());
            }
        }
    }

}

相关问题