4

それでおしまい。テキスト ファイルがあり、それを特定のディレクトリの (既存の) Zip ファイルに移動する必要があります。

    File file = new File("C:\\afolder\\test.txt");
    File dir = new File(directoryToGo+"existingzipfile.zip");
    boolean success = file.renameTo(new File(dir, file.getName()));

しかし、うまくいきません。ファイルを既存の Zip ファイルに移動する方法はありますか? ありがとうございました。

4

5 に答える 5

6

うーん、次のようなものを使用できます:

public static void addFilesToExistingZip(File zipFile, File[] files) throws IOException {
    // get a temp file
    File tempFile = File.createTempFile(zipFile.getName(), null);
    // delete it, otherwise you cannot rename your existing zip to it.
    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) {
        String name = entry.getName();
        boolean notInFiles = true;
        for (File f : files) {
            if (f.getName().equals(name)) {
                notInFiles = false;
                break;
            }
        }
        if (notInFiles) { // Add ZIP entry to output stream.
            out.putNextEntry(new ZipEntry(name)); // Transfer bytes from the ZIP file to the output file
            int len;
            while ((len = zin.read(buf)) > 0) {
                out.write(buf, 0, len);
            }
        }
        entry = zin.getNextEntry();
    } // Close the streams
    zin.close(); // Compress the files
    for (int i = 0; i < files.length; i++) {
        InputStream in = new FileInputStream(files[i]); // Add ZIP entry to output stream.
        out.putNextEntry(new ZipEntry(files[i].getName())); // Transfer bytes from the file to the ZIP file
        int len;
        while ((len = in.read(buf)) > 0) {
            out.write(buf, 0, len);
        } // Complete the entry
        out.closeEntry();
        in.close();
    } // Complete the ZIP file
    out.close();
    tempFile.delete();
}

参照:

于 2012-08-10T17:17:02.323 に答える
2

新しい zip ファイルを作成する必要があります。

  • 読み取り用に既存の zip ファイルを開きます
  • 書き込み用に新しい zip ファイルを開きます
  • 余分なファイルに対応するエントリがある場合は無視して、古い zip ファイルのすべてのエントリを新しい zip ファイルにコピーします。
  • 余分なファイルを追加する
  • 入力ファイルと出力ファイルの両方を閉じます
  • 古いzipファイルを削除します
  • 新しいzipファイルの名前を古いものの名前に変更します
于 2012-08-10T16:51:36.657 に答える
1

あなたはこのようにすることができます、ここuploadPath+fileNameにファイル名とそのパスがあります:

String FileName="Urzip file name. zip";

FileOutputStream outputStream = new FileOutputStream(uploadPath+fileName);
ZipOutputStream zipFile = new ZipOutputStream(outputStream);

byte[] buffer = new byte[1024];

// Then, here I have list of pdf files in a LIST:

// continuation ...
for (int i = 0; i < filename.size(); i++) {
    String file = filename.get(i);
    FileInputStream input = new FileInputStream(uploadPath+file);
    ZipEntry entry = new ZipEntry(file);
    zipFile.putNextEntry(entry);
    int len;

    while ((len = input.read(buffer)) > 0) {
        zipFile.write(buffer, 0, len);
    }

    zipFile.closeEntry();
    input.close();
}

// Next, here "downFile" is the other file which you have to add in your existing zip:

// continuation ...
FileInputStream input = new FileInputStream(uploadPath+downFile);

ZipEntry e = new ZipEntry(downFile);
zipFile.putNextEntry(e);
int len;
while ((len = input.read(buffer)) > 0) {
    zipFile.write(buffer, 0, len);
}
zipFile.closeEntry();
input.close();

zipFile.close();
于 2012-11-28T10:49:38.490 に答える