Få en lista över samlingar Varje databas har noll eller fler samlingar. Du kan hämta en lista över dem från db (och skriva ut alla som finns där) :
Set<String> colls = db.getCollectionNames();
for (String s : colls) {
System.out.println(s);
}
Redigera :Som föreslås i @Andrews svar, använder uppdaterad java-klient detta:
/**
* Gets the names of all the collections in this database.
*
* @return an iterable containing all the names of all the collections in this database
*/
MongoIterable<String> listCollectionNames();
och få den itererbara samlingen baserad på dokumenttypen :
/**
* Finds all the collections in this database.
*
* @param resultClass the class to decode each document into
* @param <TResult> the target document type of the iterable.
* @return the list collections iterable interface
* @mongodb.driver.manual reference/command/listCollections listCollections
*/
<TResult> ListCollectionsIterable<TResult> listCollections(Class<TResult> resultClass);