作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
如何使用 javadriver 检索 MongoDB 数据并加载到文本框中?
我尝试了以下代码来显示数据,但我想获取文本框中的数据:
BasicDBObject doc = new BasicDBObject();
doc.put("Name", v2);
doc.put("SID", n4);
doc.put("University", v4);
DBCursor Cur = coll.find(doc);
System.out.println(Cur);
最佳答案
以下代码片段展示了如何在遍历查询结果时提取文档的各个字段。如果需要,您可以获取每个字段并将其放入 GUI 的文本框中。
完整的代码示例在这里:https://gist.github.com/3087822
private static void queryAndDisplayStudents(DBCollection students)
{
// Get all students (no query criteria).
DBCursor cursor = students.find();
// Iterate over the students.
while (cursor.hasNext())
{
// Display each student.
DBObject student = cursor.next();
// Get the individual fields of the student document.
// These individual fields could, for example,
// be put in text fields of a GUI.
String name = (String) student.get("Name");
Number sid = (Number) student.get("SID");
String university = (String) student.get("University");
// Given that we are not actually building a GUI,
// just display the fields on the command line.
System.out.printf("Student name: %s, SID: %d, University: %s%n",
name, sid, university);
}
}
关于mongodb - 我如何通过 javadriver 在文本框中检索 MongoDB 数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11422842/
如何使用 javadriver 检索 MongoDB 数据并加载到文本框中? 我尝试了以下代码来显示数据,但我想获取文本框中的数据: BasicDBObject doc = new BasicDBOb
我正在尝试使用 is _id 更新 Mongo 对象。但是我没有找到正确的语法来使其使用 JavaDriver 工作,这是我最后一次尝试的。 BasicDBObject filtre = new Ba
我是一名优秀的程序员,十分优秀!