Here you can find the source of zipFile(File source, File target)
Parameter | Description |
---|---|
source | the source |
target | the target |
Parameter | Description |
---|---|
IOException | Signals that an I/O exception has occurred. |
public static void zipFile(File source, File target) throws IOException
//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(); } }