java mongodb删除表,如何在Java中删除mongodb集合中的所有文档

在Java中,要删除MongoDB集合的所有文档,可以使用`deleteMany()`方法配合一个空的`BasicDBObject`。以下是正确的代码示例:首先建立MongoClient连接,然后获取数据库和集合对象,接着使用`deleteMany(new BasicDBObject())`来删除所有文档。另一种方法是通过DBCursor迭代并逐个删除。确保你的MongoDB版本与代码兼容。
摘要由CSDN通过智能技术生成

I want to delete all documents in a collection in java. Here is my code:

MongoClient client = new MongoClient("10.0.2.113" , 27017);

MongoDatabase db = client.getDatabase("maindb");

db.getCollection("mainCollection").deleteMany(new Document());

Is this the correct way to do this?

I am using MongoDB 3.0.2

解决方案

To remove all documents use the BasicDBObject or DBCursor as follows:

MongoClient client = new MongoClient("10.0.2.113" , 27017);

MongoDatabase db = client.getDatabase("maindb");

MongoCollection collection = db.getCollection("mainCollection")

BasicDBObject document = new BasicDBObject();

// Delete All documents from collection Using blank BasicDBObject

collection.deleteMany(document);

// Delete All documents from collection using DBCursor

DBCursor cursor = collection.find();

while (cursor.hasNext()) {

collection.remove(cursor.next());

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值