SpringBoot下載文件的實現及速度對比
前言
承上篇上傳文件之後,本文就主要介紹下SpringBoot下下載文件的方式,大致有兩種Outputstream與ResponseEntity,並大概看一下速度對比
文件來源
這裡還是以GridFS為例,主要演示的還是從mongo下載下來的文件,如果是本地服務器上的文件,前端傳以文件路徑直接獲取流即可,如下:
InputStream in = new FileInputStream(System.getProperty("user.dir") + filePath);
接下來就演示下使用GridFsTemplate下載文件,mongo的配置其實上篇已經貼過瞭,這裡就直接貼代碼瞭,具體的就不做解釋瞭
@Service @Slf4j public class MongoConfig extends AbstractMongoConfiguration { @Autowired private MongoTemplate mongoTemplate; @Autowired private GridFSBucket gridFSBucket; @Override public MongoClient mongoClient() { MongoClient mongoClient = getMongoClient(); return mongoClient; } public MongoClient getMongoClient() { // MongoDB地址列表 List<ServerAddress> serverAddresses = new ArrayList<>(); serverAddresses.add(new ServerAddress("10.1.61.101:27017")); // 連接認證 MongoCredential credential = MongoCredential.createCredential("root", "admin", "Root_123".toCharArray()); MongoClientOptions.Builder builder = MongoClientOptions.builder(); //最大連接數 builder.connectionsPerHost(10); //最小連接數 builder.minConnectionsPerHost(0); //超時時間 builder.connectTimeout(1000*3); // 一個線程成功獲取到一個可用數據庫之前的最大等待時間 builder.maxWaitTime(5000); //此參數跟connectionsPerHost的乘機為一個線程變為可用的最大阻塞數,超過此乘機數之後的所有線程將及時獲取一個異常.eg.connectionsPerHost=10 and threadsAllowedToBlockForConnectionMultiplier=5,最多50個線程等級一個鏈接,推薦配置為5 builder.threadsAllowedToBlockForConnectionMultiplier(5); //最大空閑時間 builder.maxConnectionIdleTime(1000*10); //設置池連接的最大生命時間。 builder.maxConnectionLifeTime(1000*10); //連接超時時間 builder.socketTimeout(1000*10); MongoClientOptions myOptions = builder.build(); MongoClient mongoClient = new MongoClient(serverAddresses, credential, myOptions); return mongoClient; } @Override protected String getDatabaseName() { return "notifyTest"; } /** * 獲取另一個數據庫 * @return */ public String getFilesDataBaseName() { return "notifyFiles"; } /** * 用於切換不同的數據庫 * @return */ public MongoDbFactory getDbFactory(String dataBaseName) { MongoDbFactory dbFactory = null; try { dbFactory = new SimpleMongoDbFactory(getMongoClient(), dataBaseName); } catch (Exception e) { log.error("Get mongo client have an error, please check reason...", e.getMessage()); } return dbFactory; } /** * 獲取文件存儲模塊 * @return */ public GridFsTemplate getGridFS() { return new GridFsTemplate(getDbFactory(getFilesDataBaseName()), mongoTemplate.getConverter()); } @Bean public GridFSBucket getGridFSBuckets() { MongoDatabase db = getDbFactory(getFilesDataBaseName()).getDb(); return GridFSBuckets.create(db); } /** * 為瞭解決springBoot2.0之後findOne方法返回類更改所新增 將GridFSFile 轉為 GridFsResource * @param gridFsFile * @return */ public GridFsResource convertGridFSFile2Resource(GridFSFile gridFsFile) { GridFSDownloadStream gridFSDownloadStream = gridFSBucket.openDownloadStream(gridFsFile.getObjectId()); return new GridFsResource(gridFsFile, gridFSDownloadStream); } }
對比上篇配置,新增加的兩個方法主要為瞭應對SpringBoot2.x之後,GridFsTemplate的findOne()方法返回從GridFSDBFile改為GridFSFile,導致文件下載時不能使用以前的GridFSDBFile 操作流瞭,所以加瞭轉換操作
文件下載
分別把兩種方式的下載實現貼出來
1、OutputStream形式
@RequestMapping(value = "/download2", method = RequestMethod.GET) public void downLoad2(HttpServletResponse response, String id) { userService.download2(response, id); }
controller層如上,隻是測試所以很簡略,因為是流的形式所以並不需要指定輸出格式,下面看下service層實現
/** * 以OutputStream形式下載文件 * @param response * @param id */ @Override public void download2(HttpServletResponse response, String id) { GridFsTemplate gridFsTemplate = new GridFsTemplate(mongoConfig.getDbFactory(mongoConfig.getFilesDataBaseName()), mongoTemplate.getConverter()); // 由於springBoot升級到2.x 之後 findOne方法返回由 GridFSDBFile 變為 GridFSFile 瞭,導致下載變得稍微有點繁瑣 GridFSFile gridFSFile = gridFsTemplate.findOne(new Query(Criteria.where("_id").is(id))); String fileName = gridFSFile.getFilename(); GridFsResource gridFsResource = mongoConfig.convertGridFSFile2Resource(gridFSFile); // 從此處開始計時 long startTime = System.currentTimeMillis(); InputStream in = null; OutputStream out = null; try { // 這裡需對中文進行轉碼處理 fileName = new String(fileName.getBytes("utf-8"), "ISO-8859-1"); // 告訴瀏覽器彈出下載對話框 response.setHeader("Content-Disposition", "attachment;filename=" + fileName); byte[] buffer = new byte[1024]; int len; // 獲得輸出流 out = response.getOutputStream(); in = gridFsResource.getInputStream(); while ((len = in.read(buffer)) > 0) { out.write(buffer, 0 ,len); } } catch (IOException e) { log.error("transfer in error ."); } finally { try { if (null != in) in.close(); if (null != out) out.close(); log.info("download file with stream total time : {}", System.currentTimeMillis() - startTime); } catch (IOException e){ log.error("close IO error ."); } } }
可以看到篇幅較長,註釋也已經都在代碼裡瞭
2、ResponseEntity形式
@RequestMapping(value = "/download", method = RequestMethod.GET, produces = MediaType.APPLICATION_OCTET_STREAM_VALUE) public Object downLoad(String id) { return userService.download(id); }
controller需要指定輸出格式application/octet-stream,標明是以流的形式下載文件,下面看下service層
/** * 以ResponseEntity形式下載文件 * @param id * @return */ @Override public ResponseEntity<byte[]> download(String id) { GridFsTemplate gridFsTemplate = new GridFsTemplate(mongoConfig.getDbFactory(mongoConfig.getFilesDataBaseName()), mongoTemplate.getConverter()); // 由於springBoot升級到2.x 之後 findOne方法返回由 GridFSDBFile 變為 GridFSFile 瞭,導致下載變得稍微有點繁瑣 GridFSFile gridFSFile = gridFsTemplate.findOne(new Query(Criteria.where("_id").is(id))); String fileName = gridFSFile.getFilename(); GridFsResource gridFsResource = mongoConfig.convertGridFSFile2Resource(gridFSFile); // 從此處開始計時 long startTime = System.currentTimeMillis(); try { InputStream in = gridFsResource.getInputStream(); // 請求體 byte[] body = IOUtils.toByteArray(in); // 請求頭 HttpHeaders httpHeaders = new HttpHeaders(); // 這裡需對中文進行轉碼處理 fileName = new String(fileName.getBytes("utf-8"), "ISO-8859-1"); // 告訴瀏覽器彈出下載對話框 httpHeaders.add("Content-Disposition", "attachment;filename=" + fileName); ResponseEntity<byte[]> responseEntity = new ResponseEntity<>(body, httpHeaders, HttpStatus.OK); log.info("download file total with ResponseEntity time : {}", System.currentTimeMillis() - startTime); return responseEntity; } catch (IOException e) { log.error("transfer in error ."); } return null; }
上面用到瞭IOUtils工具類,依賴如下
<dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.4</version> </dependency>
兩種方式下載速度比較
經過測試,當文件小於1m內兩種方式速度差不多,然後我測瞭5m的文件,結果如下:
可以看到OutputStream略慢一點點,當文件再大時這邊也並沒有作測試,總之本人推薦使用ResponseEntity形式下載文件~
後話
如果隻是想顯示某個路徑下的圖片而並不需要下載,那麼采用如下形式:
@RequestMapping(value = "/application/file/show", method = RequestMethod.GET, produces = MediaType.IMAGE_PNG_VALUE) public Object downloadFile(@RequestParam("path") String filePath) { try { InputStream in = new FileInputStream(System.getProperty("user.dir") + filePath); byte[] bytes = new byte[in.available()]; in.read(bytes); return bytes; } catch (IOException e) { log.error("transfer byte error"); return buildMessage(ResultModel.FAIL, "show pic error"); } }
需要註意上述的available()方法,該方法是返回輸入流中所包含的字節數,方便在讀寫操作時就能得知數量,能否使用取決於實現瞭InputStream這個抽象類的具體子類中有沒有實現available這個方法。
如果實現瞭那麼就可以取得大小,如果沒有實現那麼就獲取不到。
例如FileInputStream就實現瞭available方法,那麼就可以用new byte[in.available()];這種方式。
但是,網絡編程的時候Socket中取到的InputStream,就沒有實現這個方法,那麼就不可以使用這種方式創建數組。
以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。
推薦閱讀:
- Spring Boot使用GridFS實現文件的上傳和下載方式
- 使用Springboot整合GridFS實現文件操作
- SpringBoot 使用Mongo的GridFs實現分佈式文件存儲操作
- springboot中Excel文件下載踩坑大全
- 如何解決springmvc文件下載,內容損壞的問題