Example usage for java.util.zip ZipInputStream subclass-usage

List of usage examples for java.util.zip ZipInputStream subclass-usage

Introduction

In this page you can find the example usage for java.util.zip ZipInputStream subclass-usage.

Usage

From source file org.theospi.utils.zip.UncloseableZipInputStream.java

public class UncloseableZipInputStream extends ZipInputStream {
    protected final transient Log logger = LogFactory.getLog(getClass());

    public UncloseableZipInputStream(InputStream in) {
        super(in);
    }

From source file org.jahia.utils.zip.DirectoryZipInputStream.java

/**
 * An alternative ZipInputStream implementation that reads from a directory instead of a ZIP file
 */
public class DirectoryZipInputStream extends ZipInputStream {

    File sourceDirectory;