package io.dataease.service; import io.dataease.base.domain.FileMetadata; import org.springframework.http.HttpHeaders; import org.springframework.http.MediaType; import org.springframework.http.ResponseEntity; import org.springframework.stereotype.Service; import javax.annotation.Resource; @Service public class CommonFilesService { @Resource private FileService fileService; public ResponseEntity getImageById(String imageId) { byte[] bytes = null; MediaType contentType = MediaType.parseMediaType("application/octet-stream"); FileMetadata fileMetadata = fileService.copyFile(imageId); if (fileMetadata == null) { return null; } bytes = fileService.loadFileAsBytes(imageId); return ResponseEntity.ok() .contentType(contentType) .header(HttpHeaders.CONTENT_DISPOSITION, "attachment; filename=\"" + fileMetadata.getName() + "\"") .body(bytes); } }