91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

關于mongodb中對圖片的基本操作

發布時間:2020-07-07 17:20:39 來源:億速云 閱讀:169 作者:清晨 欄目:編程語言

這篇文章主要介紹關于mongodb中對圖片的基本操作,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

以下是對于圖片的一些基本操作:

1、存儲圖片

// 存儲文件信息
GridFS gridFS = new GridFS(MongoDBUtil.getDB(), "test");
File localFile = new File("d://test.jpg");
GridFSInputFile oneFile = gridFS.createFile(localFile);
oneFile.setFilename("test.jpg");
// 配置文件屬性
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//設置日期格式
BasicDBObject metadata = new BasicDBObject();
metadata.put("uploadDate", df.format(new Date()));
oneFile.setMetaData(metadata);//添加屬性
oneFile.save();//保存文件

2、根據文件ID讀取圖片

// 存儲文件信息
GridFS gridFS = new GridFS(MongoDBUtil.getDB(), "test");
// 讀取文件
GridFSDBFile outFile = gridFS.findOne(new ObjectId(request.getParameter("id")));
//System.out.println(outFile);

3、根據MetaData屬性查找圖片

// 
GridFS gridFS = new GridFS(MongoDBUtil.getDB(), "test");
//查找條件  
BasicDBObject query = new BasicDBObject("metadata.pkid", "1123");
List<GridFSDBFile> listFiles = gridFS.find(query);
System.out.println(listFiles);
System.out.println(listFiles.size());

4、顯示圖片

    @RequestMapping(value = "/show")  
    public void show(HttpServletRequest request, HttpServletResponse response){
try {
OutputStream out = response.getOutputStream();
response.setContentType("image/jpg");
GridFS gridFS = new GridFS(MongoDBUtil.getDB(), "test");
// 讀取文件
GridFSDBFile outFile = gridFS.findOne(new ObjectId(request.getParameter("id")));
//System.out.println(outFile);
if(outFile!=null){
outFile.writeTo(out);
out.flush();
out.close();
}
} catch (Exception e) {
e.printStackTrace();
}
}

以上是關于mongodb中對圖片的基本操作的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

屯门区| 新竹市| 林州市| 襄垣县| 云和县| 图们市| 永善县| 泗水县| 基隆市| 天祝| 安乡县| 阿拉尔市| 平江县| 偃师市| 安化县| 大方县| 水富县| 剑川县| 都江堰市| 镇巴县| 且末县| 平昌县| 建水县| 金门县| 高淳县| 荃湾区| 乐昌市| 天镇县| 沐川县| 登封市| 临潭县| 沁阳市| 福海县| 于都县| 元谋县| 微博| 安阳市| 聂拉木县| 淮北市| 神农架林区| 曲阳县|