Is there a link on where to download GRIDFS driver for Android and a sample tutorial.I appreciate it.
Asked
Active
Viewed 476 times
-1
-
I think what you need to appreciate is a little bit of advise saying **do not attempt to connect to a database from a remote client**. Use a REST API or some other service middleman as the intermediary here. Don't ever think a web client is safe to talk to a database. – Neil Lunn Sep 25 '14 at 12:19
1 Answers
0
Gridfs is used by MongoDb to store large file in small chunks in database.
You don't have a separate .jar file for gridfs in android. It is already included in Mongo.jar. Import Mongo.jar in your project and you will have access to it.

Akshay Soam
- 1,580
- 3
- 21
- 39
-
that is all I need to know. Now, will look for sample codes and tutorials. – padlanau Sep 26 '14 at 11:40
-
@padlanau for basic operation u can have a look at http://howtodoinjava.com/2014/07/23/java-mongodb-getsave-image-using-gridfs-apis/ – Akshay Soam Sep 26 '14 at 22:59
-
@padlanau for detailed tutorials you can have a look at http://docs.mongodb.org/manual/core/gridfs/ – Akshay Soam Sep 26 '14 at 23:00
-
yes the answer was accepted. After importing mongo.jar, I was able to create an object and play around. – padlanau – padlanau Oct 06 '14 at 13:06