Mongodb與spring整合(4)——讀寫mongo GridFs中的檔案

來源:互聯網
上載者:User

mongodb裡面內建有一個Distributed File SystemgridFs,它是以塊的方式來隱藏檔的,一般的儲存都夠用了,國內一個使用例子是視覺中國使用它來進行上億資料級的圖片儲存,可以看出這套檔案系統還是挺強大的。下面介紹下如何用spring-data-mongodb來對其進行操作,其實spring-data-mongodb並沒有對gridfs進行再次封裝,我們只能自己根據需要簡單封裝下介面,mongodb java api中操作gridfs也是很簡單的,1.得到DB對象,2.new 一個GridFSInputFile對象,這個對象相當於一個檔案記錄,包含檔案和與這個檔案相關的資訊。3.調用save方法儲存。讀取檔案時可以根據檔案名稱和id來對檔案進行查詢,查詢出來一個GridFSDBFile
對象,再把這個對象輸出到流或檔案中。

先注入MongoDbFactory

@Autowired  private MongoDbFactory mongoDbFactory;

獲得DB對象

DB db = mongoDbFactory.getDb();

儲存檔案(其中FS_NAME相當於gridfs檔案系統的表名,可以有多個)

public boolean saveFile(File file, String fileName, String contentType,      DBObject metaData) {         GridFSInputFile gfsInput;    try {         gfsInput = new GridFS(db, FS_NAME).createFile(file);      gfsInput.setFilename(fileName);      gfsInput.setContentType(contentType);      gfsInput.setMetaData(metaData);      gfsInput.save();    } catch (IOException e) {      log.error(e, e);      return false;    }    return true;  }

通過檔案名稱讀取檔案

public GridFSDBFile findFileByName(String fileName){    GridFSDBFile gfsFile ;    try {            gfsFile = new GridFS(db, FS_NAME).findOne(fileName);    } catch (Exception e) {      log.error(e, e);      return null;    }    return gfsFile;  }

通過id讀取檔案

public GridFSDBFile findFileById(String id){    GridFSDBFile gfsFile ;    try {            gfsFile = new GridFS(db, FS_NAME).find(new ObjectId(id));    } catch (Exception e) {      log.error(e, e);      return null;    }    return gfsFile;  }

輸出檔案到OutputStream

private boolean writeToOutputStream(OutputStream out, GridFSDBFile gfsFile) {    try {           gfsFile.writeTo(out);    } catch (IOException e) {      log.error(e, e);      return false;    }    return true;  }

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.