Pobieranie listy kolekcjiKażda baza danych zawiera zero lub więcej kolekcji. Możesz pobrać ich listę z bazy danych (i wydrukować wszystkie, które tam są):
Set<String> colls = db.getCollectionNames();
for (String s : colls) {
System.out.println(s);
}
Edytuj :Jak zasugerowano w odpowiedzi @Andrew, zaktualizowany klient java używa tego:
/**
* 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();
i pobieranie iterowalnej kolekcji na podstawie typu dokumentu :
/**
* 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);