gpt4 book ai didi

java - 有没有办法在 MongoDB 客户端中使用泛型?

转载 作者:行者123 更新时间:2023-11-30 07:12:34 26 4
gpt4 key购买 nike

我在独立的 Java 应用程序中使用 mongoDB 客户端。我想知道何时无法在此客户端程序中使用泛型。以下是我正在使用的代码示例

public class MongoDB_Client {
public static void main(String[] args) {
try{

MongoClient monog_Client=new MongoClient("localhost",27017);

DB db=monog_Client.getDB("test");

DBCollection getcCollection=db.getCollection("products");


if(getcCollection.equals("products")) {

DBCollection collection_data = db.getCollection("products1");

System.out.println("Collection products1 getting successfully");

DBObject myDoc = collection_data.findOne();

DBCursor cursor = collection_data.find();
int j =1;
while (cursor.hasNext()) {
System.out.println("Inserted Document: "+j);
System.out.println(cursor.next());
j++;
}
}}

最佳答案

当Mongo Client通过Java代码连接MONGODB数据库时。如果您不使用 HASH Map,则不可能使用泛型。如果你使用的话就会出现编译问题。

关于java - 有没有办法在 MongoDB 客户端中使用泛型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38968662/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com