ホームページ  >  記事  >  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 を表すことができます。他の特定の Resource 実装が適用できない場合は、これを考慮する必要があります。

<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 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。