我需要返回一個HttpServletResponse使用iText下載帶有PDF的ZIP文件。這是我的代碼:使用PDF生成ZIP內
String fileName = "Acreditaciones.zip";
ByteArrayOutputStream baos = new ByteArrayOutputStream();
ZipOutputStream zos = new ZipOutputStream(baos);
for(int i = 0; i < numAcre; i++){
zos.putNextEntry(new ZipEntry("Acreditaciones" + String.valueOf(i+1) + ".pdf"));
Document document = new Document();
PdfWriter.getInstance(document, baos);
//Abrimos el documento para insertarle contenido
document.open();
//TODO: Coger la URL de los parametros de la BD y cifrar el id del perceptor o la columna que lo identifique
//Creamos imagen con codigo QR
BarcodeQRCode barcodeQRCode2 = new BarcodeQRCode(URL + UtilsSeguridad.cifrar("80004244D"), 1000, 1000, null);
Image codeQrImage2 = barcodeQRCode2.getImage();
codeQrImage2.setAlignment(Image.RIGHT);
codeQrImage2.scaleAbsolute(70, 70);
document.add(codeQrImage2);
document.close();
zos.closeEntry();
}
zos.finish();
zos.close();
response.setHeader("Content-Disposition", "attachment; filename=\""+ fileName + "\";");
// Indicamos que es un PDF
response.setContentType("application/zip");
// El tamaño del contenido es igual al del ByteArrayOutputStream
response.setContentLength(baos.size());
// Inyectamos el ByteArrayOutputStream al ServletOutputStream
ServletOutputStream os = response.getOutputStream();
baos.writeTo(os);
os.flush();
os.close();
FacesContext.getCurrentInstance().responseComplete();
當我下載ZIP文件,這與所有的PDF文件和腐敗沒有大小......我不知道我做錯了什麼,但似乎文件沒有被實例化。
嘗試使用任何文件的你的郵政編碼,然後用你的PDF,也是你的意見是錯誤的'應用程序/ zip'並不表示它是PDF :) –