<
Depuis la version < 7.6 >
modifié par Paul Libbrecht (admin)
sur 2016/08/19 21:35
À la version < 7.4 >
modifié par Paul Libbrecht (admin)
sur 2016/08/19 20:57
>
Commentaire de modification : Il n'y a aucun commentaire pour cette version

Résumé

Détails

Icon Propriétés de la Page
Contenu
... ... @@ -29,14 +29,13 @@
29 29   for(Attachment att in pageDoc.getAttachmentList()) {
30 30   System.err.println("Outputting " + att.filename);
31 31   ZipEntry entry = new ZipEntry(att.filename);
32 + entry.setTime(att.getDate().getTime());
33 + System.err.println("Size: " + att.filesize);
34 + entry.setSize(att.filesize);
32 32   if(uncompressedMimes.contains(att.mimeType))
33 33   entry.setMethod(ZipEntry.STORED);
34 34   else
35 35   entry.setMethod(ZipEntry.DEFLATED);
36 - entry.setTime(att.getDate().getTime());
37 - System.err.println("Size: " + att.filesize);
38 - entry.setSize(att.filesize);
39 -
40 40   out.putNextEntry(entry);
41 41   IOUtils.copy(att.contentInputStream, out, 5*1024*1024);
42 42   }
This wiki is licensed under a Creative Commons 2.0 license
XWiki 13.10 - Documentation - Conditions