Java Operation MongoDB

Source: Internet
Author: User

Package pymongo1;

Import Com.mongodb.BasicDBObject;
Import Com.mongodb.DB;
Import com.mongodb.DBCollection;
Import Com.mongodb.DBCursor;
Import Com.mongodb.DBObject;
Import com.mongodb.MongoClient;

public class M1 {
public String URL;
public int port;
Public String dbname;


public static String collection_name= "Devicedata";
Mongoclient mongoclient;
DB DB;

public static void Main (string[] args) {
TODO auto-generated Method Stub


}
Public M1 (String url,int port,string dbname)
{
This.url=url;
This.port=port;
This.dbname=dbname;
}
Public DB conn ()
{
Mongoclient = new Mongoclient (URL, port);
db = Mongoclient.getdb (dbname);
return DB;

}
Public dbcursor m2 (String collection_name) {
Dbcursor cursor=null;
try{


Dbcollection coll = db.getcollection (collection_name);
Cursor=coll.find ();
while (Cursor.hasnext ()) {System.out.println (Cursor.next ());}
//


}catch (Exception e) {e.printstacktrace ();}
return cursor;
}


public dbcursor m2 (String collection_name,dbobject ob)
{
Dbcursor cursor=null;
try{


Dbcollection coll = db.getcollection (collection_name);
Cursor=coll.find (ob);

//while (Cursor.hasnext ()) {System.out.println (Cursor.next ());}
//


}catch (Exception e) {e.printstacktrace ();}
return cursor;


}


Public dbobject m3 (String collection_name,basicdbobject ob,string flag)
{
DBObject Cursor=null;

try{


Dbcollection coll = db.getcollection (collection_name);
Cursor=coll.find (OB);
Cursor=coll.findone (OB);
while (Cursor.hasnext ()) {System.out.println (Cursor.next ());}
//


}catch (Exception e) {e.printstacktrace ();}
return cursor;


}
}

Java Operation MongoDB

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.