根据id 返回对应字段值?
使用java代码 根据c_oid得到c_title java代码怎么写
回答:
http://api.mongodb.com/java/2...
你要找的是这个API ?
回答:
// 获取Mongo Client DB 以及CollectionMongoClient mongoClient = new MongoClient("yourip",27017);
MongoDatabase db = mongoClient.getDatabase("test");
MongoCollection<Document> collection = db.getCollection("test");
// 查询条件
BasicDBObject basicDBObject = new BasicDBObject();
basicDBObject.put("c_oid", "old");
// 查询结果
Iterable<Document> documents = collection.find(basicDBObject);
for (Document document : documents) {
String cTitle = document.getString("c_title"); // 读取响应的数据
}
以上是 根据id 返回对应字段值? 的全部内容, 来源链接: utcz.com/p/176567.html