将文件添加(和覆盖)到压缩存档

时间:2015-10-06 10:31:18

标签: java override archive

嗯,它就像标题一样简单。 我试了很多个小时来创建一个方法来获取存档文件和一个File [](将被添加到存档中的文件),我只是将它设置为该方法将新文件添加到存档中,但是如果一个与我正在尝试添加的文件同名的文件已经存在,则会引发错误。 我试图寻找解决方案,但没有找到任何解决方案。 你能帮我创建一个带有两个参数的方法:File archive,File [] fileToAdd。这会将文件添加到存档中,如果需要,还会覆盖现有文件? 谢谢你,TheRedCoder

编辑: 这是我目前的代码

public static void addFilesToZip(File zipFile, File[] files) throws IOException {
    File tempFile = File.createTempFile(zipFile.getName(), null);
    tempFile.delete();
    boolean renameOk = zipFile.renameTo(tempFile);
    if (!renameOk) {
        throw new RuntimeException(
                "could not rename the file " + zipFile.getAbsolutePath() + " to " + tempFile.getAbsolutePath());
    }
    byte[] buf = new byte[1024];
    ZipInputStream zin = new ZipInputStream(new FileInputStream(tempFile));
    ZipOutputStream out = new ZipOutputStream(new FileOutputStream(zipFile));
    ZipEntry entry = zin.getNextEntry();
    while (entry != null) {
        File file = null;
        String name = entry.getName();
        boolean notInFiles = true;
        for (File f : files) {
            if (f.getName().equals(name)) {
                notInFiles = false;
                file = f;
                break;
            }
        }
        if (notInFiles) {
            out.putNextEntry(new ZipEntry(name));
            int len;
            while ((len = zin.read(buf)) > 0) {
                out.write(buf, 0, len);
            }
        } else {
            /**
             *
             * I'm stuck here, what should i do here?
             * 
             */
        }
        entry = zin.getNextEntry();
    }
    zin.close();
    for (int i = 0; i < files.length; i++) {
        InputStream in = new FileInputStream(files[i]);
        out.putNextEntry(new ZipEntry(files[i].getName()));
        int len;
        while ((len = in.read(buf)) > 0) {
            out.write(buf, 0, len);
        }
        out.closeEntry();
        in.close();
    }
    out.close();
    tempFile.delete();
}

0 个答案:

没有答案