MongoDB學習筆記(2)

來源:互聯網
上載者:User
MongoDB GridFS 檔案系統 實戰演練

1.通過–help選項,查看mongofile的協助文檔

2.通過mongofile -h {ip:port} -d {collectionName} put {fileName}

其中-h選項指定主機名稱以及連接埠號碼,-d選項指定資料庫名,put操作即為添加檔案至MongoDB。

3.

GridFS在資料庫中,預設使用fs.chunksfs.files來隱藏檔。
其中fs.files集合存放檔案的資訊,fs.chunks存放檔案資料

4.

5.

6.

list:擷取檔案清單
get:擷取檔案
delete:刪除檔案
search:查詢檔案

7.通過Java Driver操作MongoDB
【網友實現】MongoDB GridFS 檔案系統

public class GridfsDemon{ public static void main(String[] args) {        // TODO Auto-generated method stub        String URL = "192.168.136.138:27017";        MongoClient mongoClient = new MongoClient(URL);        DB db =  mongoClient.getDB("jike");        GridFS gridFS = new GridFS(db);        File file = new File(System.getProperty("user.home") + "/MongoDB-manaul.pdf");        try {//      存檔案            FileInputStream fileInputStream = new FileInputStream(file);            GridFSInputFile createFile = gridFS.createFile(fileInputStream);            createFile.put("fileName", "MongoDB_manual_3.0_2.pdf");            createFile.put("contentType", "application/pdf");            createFile.save();//      取檔案            GridFSDBFile findOne = gridFS.findOne(new BasicDBObject("_id", createFile.getId()));            System.out.println(findOne);//           取檔案清單            DBCursor fileList = gridFS.getFileList();            while(fileList.hasNext()){                System.out.println(fileList.next());            }//            刪除檔案            gridFS.remove(new BasicDBObject("_id",createFile.getId()));        } catch (FileNotFoundException e) {            // TODO Auto-generated catch block            e.printStackTrace();        } finally {            mongoClient.close();        }    }}


由上圖可見,通過java driver檔案成功上傳至MongoDB中。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.