我想将普通文件压缩为 .zip,然后将其压缩为 gzip 文件而不创建新文件。
例如,假设我有一个 pdf 文档doc.pdf,我必须得到的是:doc.pdf.zip.gz
我不想创建一个名为的新文件doc.pdf.zip
,然后打开它并压缩它。
我正在使用服务器从浏览器中获取文件并将其返回,这是我的功能:
public void ZIPandGZIP(String fileName, OutputStream os, String header) throws FileNotFoundException
{
File file = new File(fileName);
FileInputStream fis = new FileInputStream(file);
byte[] data = new byte[(int) file.length()];
DataOutputStream dos = new DataOutputStream(os);
try {
dos.writeBytes(header);
ZipOutputStream zpos = new ZipOutputStream(os);
zpos.putNextEntry(new ZipEntry(fileName));
GZIPOutputStream gos = (new GZIPOutputStream(zpos));
fis.read(data);
gos.write(data);
zpos.flush();
zpos.close();
gos.flush();
gos.close();
dos.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
我得到一个文件doc.pdf.zip.gz
,但它有一个损坏的文件doc.pdf
并且没有压缩,为什么?