#restapi #springboot #excel #microsoft #msexcel
@GetMapping("/download")
public ResponseEntity download() {
String fileName = "/Book1.xlsx";
InputStream is = this.getClass().getResourceAsStream(fileName);
try {
return ResponseEntity.ok().header(HttpHeaders.CONTENT_DISPOSITION, "attachment; fileName=" + fileName) .contentType(MediaType.parseMediaType("application/vnd.ms-excel")).body(IOUtils.toByteArray(is));
} catch (IOException e) {
return ResponseEntity.status(HttpStatus.INTERNAL_SERVER_ERROR).build();
}
}
Please Support - https://www.buymeacoffee.com/almighty...