我想將具有pdf數據的OutputStream對象作爲文件發送到webbrowser。作爲文件下載的Spring OuputStream?
代碼如下。
@RequestMapping(value="/issue", method=RequestMethod.POST)
public void issue(HttpServletResponse response, TimeStampIssueParam param) throws JsonGenerationException, JsonMappingException, IOException {
OutputStream pdfOuput = issue(input);
response.setContentType("application/pdf");
ServletOutputStream respOutput = response.getOutputStream();
....
}
問題是我已經有outputstream,我不想將它轉換爲字節數組。
任何意見,將不勝感激。