Angular:无法下载服务器端生成的电子表格

时间:2016-03-09 14:35:25

标签: angularjs rest spring-web

我正在尝试下载服务器生成的电子表格。

我的应用程序在前端使用Angular,在后端使用Java。

这是后端上接收生成并返回文件的请求的方法:

@RequestMapping(value = "download", method = RequestMethod.GET, produces = "application/xls")
public ResponseEntity<InputStreamResource> download() throws IOException {
    ByteArrayOutputStream fileOut = new ByteArrayOutputStream();
    HSSFWorkbook workbook = new HSSFWorkbook();
    HSSFSheet worksheet = workbook.createSheet("POI Worksheet");

    HSSFRow row1 = worksheet.createRow((short) 0);

    HSSFCell cellA1 = row1.createCell((short) 0);
    cellA1.setCellValue("Hello!");
    HSSFCellStyle cellStyle = workbook.createCellStyle();
    cellStyle.setFillForegroundColor(HSSFColor.GOLD.index);
    cellStyle.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND);
    cellA1.setCellStyle(cellStyle);

    workbook.write(fileOut);
    fileOut.close();

    byte[] file = fileOut.toByteArray();

    return ResponseEntity
            .ok()
            .contentLength(file.length)
            .contentType(MediaType.parseMediaType("application/octet-stream"))
            .body(new InputStreamResource(new ByteArrayInputStream(file)));
}

在前端,当用户点击“下载”按钮时执行以下功能:

$scope.exportFile = function() {
    $http.get('http://127.0.0.1:8000/api/excel/download')
        .success(function (data, status, headers, config) {
            var anchor = angular.element('<a/>');
            anchor.attr({
                href: 'data:application/octet-stream;charset=utf-8,' + encodeURI(data),
                target: '_blank',
                download: 'spreadsheet.xls'
            })[0].click();
        })
        .error(function (data, status, headers, config) {
            // handle error
        });
};

返回的电子表格包含不可读的字符。

如果我直接访问http://127.0.0.1:8000/api/excel/download,则会下载没有.xls扩展名的电子表格(根本没有扩展名)。如果我重命名添加.xls扩展名的文件,然后打开它,我可以看到文件内容。所以我认为调用Angular时遇到的问题是后端而不是在Java上生成文件。

有没有人遇到这种情况或有一些例子可以分享?我做错了什么?

1 个答案:

答案 0 :(得分:0)

Content-Disposition标题可以解决问题。所以,你会有这样的事情:

HttpHeaders headers = new HttpHeaders();
headers.setContentDispositionFormData("Attachment", "spreadsheet.xls");
headers.setContentType(MediaType.APPLICATION_OCTET_STREAM);
headers.setContentLength(file.length);

return new ResponseEntity<InputStreamResource>(
           new InputStreamResource(new ByteArrayInputStream(file)),
           headers, HttpStatus.OK);