java统计mongo一个集合的数据量
时间: 2024-02-28 16:52:42 浏览: 83
Java操作mongo
你可以使用MongoDB的Java驱动程序来获取MongoDB集合的数据量,以下是一个示例代码:
```java
MongoClient mongoClient = new MongoClient("localhost", 27017);
MongoDatabase database = mongoClient.getDatabase("yourDatabaseName");
MongoCollection<Document> collection = database.getCollection("yourCollectionName");
long count = collection.countDocuments();
System.out.println("Number of documents in the collection: " + count);
```
这将连接到名为"yourDatabaseName"的MongoDB数据库,并获取名为"yourCollectionName"的集合中的文档数,从而得到集合的数据量。countDocuments()方法返回集合中文档的数量。
阅读全文