1、获取文件对象
我们在 MinIO 工具类中,获取文件对象的方法,即获取文件的输入流对象
/** * 获取文件 * * @param bucketName bucket名称 * @param objectName 文件名称 * @return 二进制流 */ @SneakyThrows public InputStream getObject(String bucketName, String objectName) { return client.getObject(bucketName, objectName); }
- bucketName,是指存储桶的名称
- objectName,是指文件的路径,即存储桶下文件的相对路径
- 例如,图片的地址为
http://127.0.0.1:9000/bucketName/20200806/1596681603481809.png
那么 objectName 就为
20200806/1596681603481809.png
2、下载文件
我们需要编写一个 API 来进行访问从而下载文件
/** * 获取文件 * * @param bucketName bucket名称 * @param objectName 文件名称 * @return 二进制流 */ @SneakyThrows public InputStream getObject(String bucketName, String objectName) { return client.getObject(bucketName, objectName); } /** * 下载文件 * * @param fileUrl 文件绝对路径 * @param response * @throws IOException */ @GetMapping("downloadFile") public void downloadFile(String fileUrl, HttpServletResponse response) throws IOException { if (StringUtils.isBlank(fileUrl)) { response.setHeader("Content-type", "text/html;charset=UTF-8"); String data = "文件下载失败"; OutputStream ps = response.getOutputStream(); ps.write(data.getBytes("UTF-8")); return; } try { // 拿到文件路径 String url = fileUrl.split("9000/")[1]; // 获取文件对象 InputStream object = minioUtils.getObject(MinioConst.MINIO_BUCKET, url.substring(url.indexOf("/") + 1)); byte buf[] = new byte[1024]; int length = 0; response.reset(); response.setHeader("Content-Disposition", "attachment;filename=" + URLEncoder.encode(url.substring(url.lastIndexOf("/") + 1), "UTF-8")); response.setContentType("application/octet-stream"); response.setCharacterEncoding("UTF-8"); OutputStream outputStream = response.getOutputStream(); // 输出文件 while ((length = object.read(buf)) > 0) { outputStream.write(buf, 0, length); } // 关闭输出流 outputStream.close(); } catch (Exception ex) { response.setHeader("Content-type", "text/html;charset=UTF-8"); String data = "文件下载失败"; OutputStream ps = response.getOutputStream(); ps.write(data.getBytes("UTF-8")); } }
这里传入的参数 fileUrl 为文件的绝对路径,即可以直接访问的路径,还需要通过此路径,截取得到文件的相对路径(即去掉 IP 地址和端口,去掉存储桶名称的路径)
3、测试
通过访问 API
http://127.0.0.1/minio/downloadFile?fileUrl=http://127.0.0.1:9000/bucketName/20200806/1596681603481809.png
便能成功下载文件了