MongoDB从嵌套文档中读取

时间:2017-09-12 22:59:26

标签: java mongodb mongodb-java

我有一个包含嵌套文档的文档,我认为根据过滤器我可以指定像data.sms.mobileNumber这样的东西。然而,这不起作用。

如何使用标准Document getString请求读取data.sms.mobileNumber字段中的数据?

示例文档:

{ "_id" : ObjectId("59b850bd81bacd0013d15085"), "data" : { "sms" : { "message" : "Your SMS Code is ABCDEFG", "mobileNumber" : "+447833477560" } }, "id" : "b0a3886d69fc7319dbb4f4cc21a6039b422810cd875956bfd681095aa65f6245" }

示例字段获取字符串请求:

document.getString("data.sms.message")

1 个答案:

答案 0 :(得分:2)

'路径' data.sms.message指的是这样的结构:

+- data
  |
  +- sms
    |
    +- message

要使用Java驱动程序阅读本文,您必须阅读data文档,然后阅读sms子文档,然后阅读该子文档的message属性。

例如:

Document data = collection.find(filter).first();
Document sms = (Document) data.get("sms");
String message = sms.getString("message");

或者,与快捷方式相同:

String message = collection.find(filter).first()
    .get("sms", Document.class)
    .getString("message");

更新1 以回答这个问题:"我有一个案例,我在文档中有一系列文档,我将如何从文档中获取字段阵列&#34?;假设您有一个文档,其中包含一个名为details的数组字段,每个detail都有nameage。像这样:

{"employee_id": "1", "details": [{"name":"A","age":"18"}]}
{"employee_id": "2", "details": [{"name":"B","age":"21"}]}

您可以像这样读取数组元素:

    Document firstElementInArray = collection.find(filter).first()
        // read the details as an Array 
        .get("details", ArrayList.class)
        // focus on the first element in the details array
        .get(0);

    String name = firstElementInArray.getString("name");