>  기사  >  Java  >  Spring Boot REST 서비스에서 파일을 다운로드하는 방법: InputStreamReader가 실패하는 이유와 InputStreamResource 또는 ByteArrayResource를 사용하여 문제를 해결하는 방법은 무엇입니까?

Spring Boot REST 서비스에서 파일을 다운로드하는 방법: InputStreamReader가 실패하는 이유와 InputStreamResource 또는 ByteArrayResource를 사용하여 문제를 해결하는 방법은 무엇입니까?

Susan Sarandon
Susan Sarandon원래의
2024-11-02 07:37:02259검색

How to Download a File from a Spring Boot REST Service: Why InputStreamReader Fails and How to Fix It with InputStreamResource or ByteArrayResource?

Spring Boot REST 서비스에서 파일 다운로드

이 문서에서는 Spring Boot REST 서비스에서 파일을 다운로드하는 문제를 효과적으로 다룹니다. 아래에 제공된 코드는 이 기능을 용이하게 하려고 시도합니다.

<code class="java">@RequestMapping(path="/downloadFile",method=RequestMethod.GET)
@Consumes(MediaType.APPLICATION_JSON_VALUE)
public ResponseEntity<InputStreamReader> downloadDocument(
                String acquistionId,
                String fileType,
                Integer expressVfId) throws IOException {
        File file2Upload = new File("C:\Users\admin\Desktop\bkp\1.rtf");
        HttpHeaders headers = new HttpHeaders();
        headers.add("Cache-Control", "no-cache, no-store, must-revalidate");
        headers.add("Pragma", "no-cache");
        headers.add("Expires", "0");
        InputStreamReader i = new InputStreamReader(new FileInputStream(file2Upload));
        System.out.println("The length of the file is : "+file2Upload.length());

        return ResponseEntity.ok().headers(headers).contentLength(file2Upload.length())
                .contentType(MediaType.parseMediaType("application/octet-stream"))
                .body(i);
        }</code>

그러나 브라우저를 통해 파일을 다운로드하려고 하면 프로세스가 시작되지만 결국 실패합니다. 이 문제를 해결하기 위해 다음 옵션을 탐색할 수 있습니다.

옵션 1: InputStreamResource 활용

InputStreamResource를 사용하여 InputStream을 나타낼 수 있습니다. 다른 특정 리소스 구현을 적용할 수 없는 경우 고려해야 합니다.

<code class="java">@RequestMapping(path = "/download", method = RequestMethod.GET)
public ResponseEntity<Resource> download(String param) throws IOException {

    // ...

    InputStreamResource resource = new InputStreamResource(new FileInputStream(file));

    return ResponseEntity.ok()
            .headers(headers)
            .contentLength(file.length())
            .contentType(MediaType.APPLICATION_OCTET_STREAM)
            .body(resource);
}</code>

옵션 2: ByteArrayResource 사용

InputStreamResource 설명서에서 권장하는 대로 ByteArrayResource 취업도 가능합니다.

<code class="java">@RequestMapping(path = "/download", method = RequestMethod.GET)
public ResponseEntity<Resource> download(String param) throws IOException {

    // ...

    Path path = Paths.get(file.getAbsolutePath());
    ByteArrayResource resource = new ByteArrayResource(Files.readAllBytes(path));

    return ResponseEntity.ok()
            .headers(headers)
            .contentLength(file.length())
            .contentType(MediaType.APPLICATION_OCTET_STREAM)
            .body(resource);
}</code>

위 내용은 Spring Boot REST 서비스에서 파일을 다운로드하는 방법: InputStreamReader가 실패하는 이유와 InputStreamResource 또는 ByteArrayResource를 사용하여 문제를 해결하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.