欢迎访问 生活随笔!

生活随笔

当前位置: 首页 > 编程语言 > java >内容正文

java

java文件客户端下载_使用Java写一个minio的客户端上传下载文件

发布时间:2024/1/23 java 46 豆豆
生活随笔 收集整理的这篇文章主要介绍了 java文件客户端下载_使用Java写一个minio的客户端上传下载文件 小编觉得挺不错的,现在分享给大家,帮大家做个参考.

标签:color   ati   tty   java   system   wired   format   media   param

前言:

确保已经安装了minio的服务端

代码:

pom.xml

dependency>

groupId>io.miniogroupId>

artifactId>minioartifactId>

version>7.0.2version>

dependency>

application.yml

server:

port:90

minio:

url: http://10.69.94.140:9000

accessKey: 账号

secretKey: 密码

defaultFolder:/

MinioProperties.java

@ConfigurationProperties("minio")

@Datapublic classMinioProperties {privateString url;privateString accessKey;privateString secretKey;privateString defaultFolder;

}

SpringConfig.java

@Configuration

@EnableConfigurationProperties(MinioProperties.class)

@Slf4jpublic classSpringConfig {

@AutowiredprivateMinioProperties minioProperties;

@BeanpublicMinioClient minioClient() {try{return newMinioClient(minioProperties.getUrl(), minioProperties.getAccessKey(), minioProperties.getSecretKey());

}catch(Exception e) {

log.error(e.toString());

}return null;

}

}

ImagesController.java

@RestController

@RequestMapping("/image")

@Slf4j

@CrossOrigin(origins= "*")public classImageController {

@AutowiredprivateFileService fileService;/*******

* Get image file, this method return an image type file which can be displayed in browser.

* @param bucketName, system, each system should belong a special bucket.

* @param category, a system may contain multiple category

* @param fileName*/@GetMapping(value= "/get/{bucketName}/{category}/{objectName}/{fileName}", produces =MediaType.IMAGE_JPEG_VALUE)public byte[] get(@PathVariable("bucketName") String bucketName, @PathVariable("category") String category,

@PathVariable("objectName") String objectName,

@PathVariable("fileName") String fileName) throws Exception {returnfileService.getFile(bucketName, category, objectName);

}

@GetMapping("/download/{bucketName}/{category}/{objectName}/{fileName}")public void download(@PathVariable("bucketName") String bucketName, @PathVariable("category") String category,

@PathVariable("objectName") String objectName,

@PathVariable("fileName") String fileName, HttpServletResponse response) throws Exception {byte[] buffer =fileService.getFile(bucketName, category, objectName);

response.setContentType(MediaType.APPLICATION_OCTET_STREAM_VALUE);

response.setHeader("Content-disposition", "attachment; filename=\"" + fileName + "\"");

response.getOutputStream().write(buffer);

response.flushBuffer();

response.getOutputStream().close();

}

@PostMapping("/upload/{bucketName}/{category}")public String upload(@PathVariable("bucketName") String bucketName, @PathVariable("category") String category,

@RequestParam("file") MultipartFile file) throws Exception {

String objectName=UUID.randomUUID().toString();

fileService.storeFile(bucketName, category, objectName, file.getBytes());return String.format("image/get/%s/%s/%s/%s", bucketName, category, objectName, file.getOriginalFilename());

}

}

FilesController.java

@RestController

@RequestMapping("/files")

@Slf4j

@CrossOrigin(origins= "*")public classFilesController {

@AutowiredprivateFileService fileService;

@GetMapping("/download/{bucketName}/{category}/{objectName}/{fileName}")public void download(@PathVariable("bucketName") String bucketName, @PathVariable("category") String category,

@PathVariable("objectName") String objectName, @PathVariable("fileName") String fileName, HttpServletResponse response) throws Exception {byte[] buffer =fileService.getFile(bucketName, category, objectName);

response.setContentType(MediaType.APPLICATION_OCTET_STREAM_VALUE);

response.setHeader("Content-disposition", "attachment; filename=\"" + fileName + "\"");

response.getOutputStream().write(buffer);

response.flushBuffer();

response.getOutputStream().close();

}

@PostMapping("/upload/{bucketName}/{category}")public String upload(@PathVariable("bucketName") String bucketName, @PathVariable("category") String category,

@RequestParam("file") MultipartFile file) throws Exception {

String objectName=UUID.randomUUID().toString();

fileService.storeFile(bucketName, category, objectName, file.getBytes());return String.format("files/download/%s/%s/%s/%s", bucketName, category, objectName, file.getOriginalFilename());

}

}

upload.html

DOCTYPE html>

htmllang="en">

head>

metacharset="UTF-8">

title>Upload file testtitle>

head>

body>

formaction="http://localhost:90/image/upload/zeng/test"method="post"enctype="multipart/form-data">

inputtype="file"name="file" />

inputtype="submit"value="Submit">

form>

body>

html>

使用Java写一个minio的客户端上传下载文件

标签:color   ati   tty   java   system   wired   format   media   param

总结

以上是生活随笔为你收集整理的java文件客户端下载_使用Java写一个minio的客户端上传下载文件的全部内容,希望文章能够帮你解决所遇到的问题。

如果觉得生活随笔网站内容还不错,欢迎将生活随笔推荐给好友。