Java没有写入zip文件

时间:2016-10-20 02:50:35

标签: java zip zipfile

我有以下java方法,我试图用它来创建一个zip文件,其中写入了一个现有文件(zip文件具有相同的名称,只需将.log扩展名替换为.zip) 。 zip文件已成功创建,但文件完成时不在其中。

这是我的代码:

private static void zipFile(File fileToZip) {

    final int bufferSize = 2048;
    File zipFile = new File(fileToZip.getAbsolutePath().replaceAll(".log", ".zip"));

    try (FileOutputStream fos = new FileOutputStream(zipFile.getAbsolutePath());
            FileInputStream fis = new FileInputStream(fileToZip);
            ZipOutputStream zos = new ZipOutputStream(new BufferedOutputStream(fos));
            BufferedInputStream origin = new BufferedInputStream(fis, bufferSize)) {

        ZipEntry ze = new ZipEntry(fileToZip.getAbsolutePath());
        zos.putNextEntry(ze);
        byte[] data = new byte[bufferSize];
        int count;
        while ((count = origin.read(data, 0, bufferSize)) != -1) {
            LOGGER.info("WRITING!!!");
            zos.write(data, 0, count);
        }
        zos.closeEntry();

    } catch (IOException e) {
        LOGGER.error("Error: ", e);
    }

}

有什么想法吗? :)

1 个答案:

答案 0 :(得分:2)

更改

ZipEntry ze = new ZipEntry(fileToZip.getAbsolutePath());

ZipEntry ze = new ZipEntry(fileToZip.getName());