MongoDB的document可以理解为一个json
获取DBObject后,把DBObject转化为 fastJson的JSONObject:
import com.mongodb.DBObject;
import com.alibaba.fastjson.JSONObject;
import com.alibaba.fastjson.JSON;
JSONObject jsonObject = (JSONObject) JSON.toJSON(dbObject);
MongoDB的document可以理解为一个json
获取DBObject后,把DBObject转化为 fastJson的JSONObject:
import com.mongodb.DBObject;
import com.alibaba.fastjson.JSONObject;
import com.alibaba.fastjson.JSON;
JSONObject jsonObject = (JSONObject) JSON.toJSON(dbObject);