MongoDB:如何使用Java Driver获取包含数组的所有元素?

时间:2014-08-05 13:17:09

标签: java mongodb

如何使用Java驱动程序编写此MongoDB查询:

  

db.customers.find({'arrayName':{$ exists:true},$ where:'this.arrayName.length> 0'})

干杯, 晏

1 个答案:

答案 0 :(得分:1)

要使用Java驱动程序构建查询,可以使用DBObject替换任何Javascript对象。

DBObject condition = new BasicDBObject();
condition.put("arrayName", new BasicDBObject("$exists", true));
condition.put("$where",  "this.arrayName.length>0");

DBCursor result = yourDatabase.getCollection("customers").find(condition);