Java Ungzip File ungzip(String gzipFile, String newFile)

Here you can find the source of ungzip(String gzipFile, String newFile)

Description

ungzip

License

Open Source License

Declaration

public static void ungzip(String gzipFile, String newFile) 

Method Source Code


//package com.java2s;
/*//from  w ww . ja  va 2 s  .co m
 * Voxem
 * Copyright (c) 2014-2015, Maxim Roncac? <caseif@caseif.net>
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */

import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.zip.GZIPInputStream;

public class Main {
    public static void ungzip(String gzipFile, String newFile) {
        try {
            FileInputStream fis = new FileInputStream(gzipFile);
            GZIPInputStream gis = new GZIPInputStream(fis);
            FileOutputStream fos = new FileOutputStream(newFile);
            byte[] buffer = new byte[1024];
            int len;
            while ((len = gis.read(buffer)) != -1) {
                fos.write(buffer, 0, len);
            }
            //close resources
            fos.close();
            gis.close();
        } catch (IOException ex) {
            ex.printStackTrace();
        }

    }
}

Related

  1. unGzip(File inFile, File outFile)
  2. unGzip(File sourceZipFile, String destFolder, String destFile)
  3. unGzip(final File compressedInputFile, final File outputDir)
  4. unGzip(final File inputFile, final File outputDir)
  5. ungzip(InputStream ins)
  6. ungzipFile(String inputFileName, String outputFileName)