小编典典

在MongoDB中使用JSON?

json

我的应用程序大量使用JSON对象(org.json.JSONArray和朋友)。将它们存储到Mongo
DBObjects中以便查询它们的最有效方法是什么?BasicDBObject无法序列化JSONArray,这两个层次结构之间似乎根本没有互操作性。


阅读 370

收藏
2020-07-27

共1个答案

小编典典

好的,似乎没有互操作性,所以我自己动手了。忙于避开类型系统:

public class Util {
    public static DBObject encode(JSONArray a) {
        BasicDBList result = new BasicDBList();
        try {
            for (int i = 0; i < a.length(); ++i) {
                Object o = a.get(i);
                if (o instanceof JSONObject) {
                    result.add(encode((JSONObject)o));
                } else if (o instanceof JSONArray) {
                    result.add(encode((JSONArray)o));
                } else {
                    result.add(o);
                }
            }
            return result;
        } catch (JSONException je) {
            return null;
        }
    }

    public static DBObject encode(JSONObject o) {
        BasicDBObject result = new BasicDBObject();
        try {
            Iterator i = o.keys();
            while (i.hasNext()) {
                String k = (String)i.next();
                Object v = o.get(k);
                if (v instanceof JSONArray) {
                    result.put(k, encode((JSONArray)v));
                } else if (v instanceof JSONObject) {
                    result.put(k, encode((JSONObject)v));
                } else {
                    result.put(k, v);
                }
            }
            return result;
        } catch (JSONException je) {
            return null;
        }
    }
}
2020-07-27