我使用MongoDB java驱动程序向MongoDB询问查询。我得到的回应是DBCursor:
DBCursor cursor = collection.find(localBasicDBObject2).limit(10000);
使用Json.serialize(游标)我得到“json Array”但我需要“bson Array”。
使用此代码:
while (cursor.hasNext()) {
BSON.encode(cursor.next());
}
我得到bson对象但不是“bson Array”。有人能想到吗?