我尝试制作此程序,但我收到此错误
无法强制转换为org.bson.BSONObject
我不知道程序的结构是否合适。我想做一个程序来搜索数据库(mongoDB)并打印我所有的事件,但当我有一个pageLoad
事件时,我想检查它是否有一个URL并打印它,否则它应该搜索再次为下一个事件,直到pageLoad
再次发生一次事件。所以像这样的一个循环。
结果必须是这样的。例如。
MongoClient mongoClient;
DB db;
mongoClient = new MongoClient("localhost", 27017);
db = mongoClient.getDB("behaviourDB_areas");
DBCollection cEvent = db.getCollection("event");
BasicDBObject orderBy = new BasicDBObject();
orderBy.put("timeStamp", 1);
DBCursor cursorEvents = null;
BasicDBObject searchQuery = new BasicDBObject();
searchQuery.put("user_id", "55b20db905f333defea9827f");
cursorEvents = cEvent.find(searchQuery).sort(orderBy);
if (cursorEvents.hasNext()) {
while ((((BSONObject) db.getCollection("event")).get("type") != "pageLoad")) {
System.out.println(cursorEvents.next().get("type").toString());
if (((BSONObject) db.getCollection("event")).get("type") == "pageLoad") {
System.out.println(cursorEvents.next().get("url").toString());
}
}
}
mongoClient.close();
}
}
答案 0 :(得分:2)
要使用游标循环查询结果,请使用以下代码:
while (cursorEvents.hasNext()) {
DBObject documentInEventCollection = cursorEvents.next();
// do stuff with documentInEventCollection
}
此外,请勿尝试将String
与==
或!=
进行比较。这不会比较实际的字符串而是对象引用。如果要检查文档的type
字段是否等于字符串pageLoad
,请使用以下代码:
if ("pageLoad".equals(documentInEventCollection.get("type")) {
// do something
} else {
// do something else
}