Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Java

จะรับรายการฐานข้อมูล MongoDB ทั้งหมดโดยใช้ java ได้อย่างไร


ใน MongoDB คุณสามารถดูรายการฐานข้อมูลโดยใช้คำสั่ง show dbs

> show dbs
admin
config
local
myDatabase
sampleDatabase
students
test
testDB

ใน Java คุณสามารถรับรายการฐานข้อมูลทั้งหมดใน MongoDb โดยใช้ getDatabaseNames() วิธีการ

ตัวอย่าง

import com.mongodb.client.MongoIterable;
import com.mongodb.MongoClient;
public class ListOfDatabases {
   public static void main( String args[] ) {
      // Creating a Mongo client
      MongoClient mongo = new MongoClient( "localhost" , 27017 );
      //Retrieving the list of collections
      MongoIterable<String> list = mongo.listDatabaseNames();
      for (String name : list) {
         System.out.println(name);
      }
   }
}

ผลลัพธ์

admin
config
local
myDatabase
sampleDatabase
students
test
testDB