Java Zip File zipFile(File source, File target)

Here you can find the source of zipFile(File source, File target)

Description

Zip file.

License

Apache License

Parameter

Parameter Description
source the source
target the target

Exception

Parameter Description
IOException Signals that an I/O exception has occurred.

Declaration

public static void zipFile(File source, File target) throws IOException 

Method Source Code


//package com.java2s;
/*//from w  ww  . j  ava2  s .  co m
 * FileUtil.java
 *
 * 20.05.2008
 *
 * Copyright 2008 Michael Lieshoff
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */

import java.io.*;

import java.util.zip.*;

public class Main {
    /**
     * Zip file.
     *
     * @param source the source
     * @param target the target
     * @throws IOException Signals that an I/O exception has occurred.
     */
    public static void zipFile(File source, File target) throws IOException {
        FileOutputStream fos = new FileOutputStream(target);
        ZipOutputStream zos = new ZipOutputStream(fos);
        FileInputStream fis = new FileInputStream(source);
        BufferedInputStream bis = new BufferedInputStream(fis);
        ZipEntry entry = new ZipEntry(source.getCanonicalFile().getName());
        zos.putNextEntry(entry);
        byte[] barray = new byte[1024];
        int bytes;
        while ((bytes = bis.read(barray, 0, 1024)) > -1) {
            zos.write(barray, 0, bytes);
        }
        bis.close();
        fis.close();
        zos.flush();
        zos.close();
        fos.close();
    }
}

Related

  1. zipFile(File inputFile, String zipFilePath)
  2. zipFile(File resFile, ZipOutputStream zipout, String rootpath)
  3. zipFile(File root, String outFileFullName, String[] suffixs, String[] nameMatche, String[] nameNotMatche)
  4. zipFile(File source, File dest)
  5. zipFile(File source, File target)
  6. zipFile(File source, String basePath, ZipOutputStream zos)
  7. zipFile(File sourceFile)
  8. zipFile(File zipfile, ZipOutputStream zos, String name)
  9. zipFile(final File source)