web-dev-qa-db-ja.com

Spring MVCでファイルを返すREST

REST Fileを返すサービスコード以下のコードがあります。問題はPostManクライアントの応答本文にあります。未処理の応答を取得します。ファイルの内容はクライアントに、目標はユーザーにファイルを返すことです。ファイル名は「File1.jpeg」です

コード:

@RequestMapping(value = URIConstansts.GET_FILE, produces = { "application/json" }, method = RequestMethod.GET)
public @ResponseBody ResponseEntity getFile(@RequestParam(value="fileName", required=false) String fileName,HttpServletRequest request) throws IOException{

    ResponseEntity respEntity = null;

    byte[] reportBytes = null;
    File result=new File("/home/arpit/Documents/PCAP/dummyPath/"+fileName);

    if(result.exists()){
        InputStream inputStream = new FileInputStream("/home/arpit/Documents/PCAP/dummyPath/"+fileName); 


        byte[]out=org.Apache.commons.io.IOUtils.toByteArray(inputStream);

        HttpHeaders responseHeaders = new HttpHeaders();
        responseHeaders.add("content-disposition", "attachment; filename=" + fileName);

        respEntity = new ResponseEntity(out, responseHeaders,HttpStatus.OK);


    }else{

        respEntity = new ResponseEntity ("File Not Found", HttpStatus.OK);
    }


    return respEntity;

}
10
arpit joshi

以下のコードは私の問題を解決しました:

@RequestMapping(value = URIConstansts.GET_FILE, produces = { "application/json" }, method = RequestMethod.GET)
public @ResponseBody ResponseEntity getFile(@RequestParam(value="fileName", required=false) String fileName,HttpServletRequest request) throws IOException{

    ResponseEntity respEntity = null;

    byte[] reportBytes = null;
    File result=new File("/home/arpit/Documents/PCAP/dummyPath/"+fileName);

    if(result.exists()){
        InputStream inputStream = new FileInputStream("/home/arpit/Documents/PCAP/dummyPath/"+fileName);
        String type=result.toURL().openConnection().guessContentTypeFromName(fileName);

        byte[]out=org.Apache.commons.io.IOUtils.toByteArray(inputStream);

        HttpHeaders responseHeaders = new HttpHeaders();
        responseHeaders.add("content-disposition", "attachment; filename=" + fileName);
        responseHeaders.add("Content-Type",type);

        respEntity = new ResponseEntity(out, responseHeaders,HttpStatus.OK);
    }else{
        respEntity = new ResponseEntity ("File Not Found", HttpStatus.OK);
    }
    return respEntity;
}
21
arpit joshi

Produces = {application/json "}の代わりに異なるコンテンツタイプを使用する必要があります

コンテンツタイプ

http://silk.nih.gov/public/[email protected]

それでも動作しない場合は、HttpServletResponseを取得し、response.setContentType()を使用してファイルデータをStreamに書き込みます。

注::最近、response.getOutputStreamを使用してExcelファイルを記述しています。いくつかの理由により、設定を行うと無駄になります。

また、FirefoxでFirebugを使用して、応答ヘッダーを表示できます。

3
DhruvG