Anda harus menggunakan DBCollection.find()
metode, yang
Jadi, yang harus Anda lakukan adalah:
DBCursor cursor = coll.find();
while (cursor.hasNext()) {
DBObject obj = cursor.next();
//do your thing
}
Anda harus menggunakan DBCollection.find()
metode, yang
Jadi, yang harus Anda lakukan adalah:
DBCursor cursor = coll.find();
while (cursor.hasNext()) {
DBObject obj = cursor.next();
//do your thing
}