本文介绍: else {

import org.springframework.core.io.FileSystemResource;
import org.springframework.core.io.Resource; 
import org.springframework.http.HttpHeaders;
import org.springframework.http.MediaType;
import org.springframework.http.ContentDisposition;

@RequestMapping(“/download”)
public ResponseEntity<Resource> download(HttpServletRequest request, @RequestBody QueryBHDownLoadFileVo param) {
    String path = “D:\VipSoft.xlsx”;
    String contentDisposition = ContentDisposition
            .builder(“attachment”)
            .filename(path)
            .build().toString();

    File file = new File(path);
    if (file.exists()) {
        return ResponseEntity.ok()
                .header(HttpHeaders.CONTENT_DISPOSITION, contentDisposition)
                .contentType(MediaType.APPLICATION_OCTET_STREAM)
                .body(new FileSystemResource(path));
    } else {
        return ResponseEntity.badRequest()
                .header(HttpHeaders.CONTENT_DISPOSITION, contentDisposition + ” Not Found”)
                .contentType(MediaType.APPLICATION_OCTET_STREAM)
                .body(null);
    }

}

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注