Sie müssen DBCollection.find()
Methode, die
Was Sie also tun müssen, ist:
DBCursor cursor = coll.find();
while (cursor.hasNext()) {
DBObject obj = cursor.next();
//do your thing
}
Sie müssen DBCollection.find()
Methode, die
Was Sie also tun müssen, ist:
DBCursor cursor = coll.find();
while (cursor.hasNext()) {
DBObject obj = cursor.next();
//do your thing
}