Du måste använda DBCollection.find()
metod, som
Så vad du måste göra är:
DBCursor cursor = coll.find();
while (cursor.hasNext()) {
DBObject obj = cursor.next();
//do your thing
}
Du måste använda DBCollection.find()
metod, som
Så vad du måste göra är:
DBCursor cursor = coll.find();
while (cursor.hasNext()) {
DBObject obj = cursor.next();
//do your thing
}