如何连接到Android中的MongoDB数据库?

时间:2015-07-19 11:37:30

标签: java android mongodb dbconnection

这就是我将Java驱动程序添加到项目中的方法

compile 'org.mongodb:mongo-java-driver:2.13.2'

运行我的Android应用后,Gradle粉碎了。 如果我直接添加jar,我的应用程序无论如何都会崩溃。

以下连接代码:

MongoClient mongoClient = new MongoClient("mongodb://Dbuser:dbpass@ds047692.mongolab.com:47692");
DB db = mongoClient.getDB("testdb");
Set<String> collectionNames = db.getCollectionNames();

我只需要从我的应用程序连接到mongo数据库。 我不确定我的连接字符串的正确性。 在我的数据库帐户中,我找到了:

通过标准URI使用驱动程序进行连接:mongodb:// blablauser:password@ds047692.mongolab.com:47692 / urdb

但在代码中它没有连接。

我使用mongo-java-driver。但每次我试着读我的db我都会

java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.artem.mongodb/com.example.artem.mongodb.MainActivity}: com.mongodb.MongoTimeoutException: Timed out after 30000 ms while waiting for a server that matches ReadPreferenceServerSelector{readPreference=primary}. Client view of cluster state is {type=UNKNOWN, servers=[{address=ds047692.mongolab.com:47692, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.SocketException: socket failed: EACCES (Permission denied)}, caused by {android.system.ErrnoException: socket failed: EACCES (Permission denied)}}]

Document myDoc = collection.find().first();//crash point

为什么我无法访问自己的数据库?

2 个答案:

答案 0 :(得分:4)

尝试使用此

MongoClientURI mongoUri  = new MongoClientURI("mongodb://Dbuser:dbpass@ds047692.mongolab.com:47692");
MongoClient mongoClient = new MongoClient(mongoUri);
DB db = mongoClient.getDB("testdb");
Set<String> collectionNames = db.getCollectionNames();

首先,您需要将uri转换为MongoClientURI格式。

答案 1 :(得分:-1)

我不知道你是否解决了它,但我遇到了同样的问题,我使用了http://docs.mlab.com/data-api/ 与http请求。