Package gnu.zip

Examples of gnu.zip.ZipEntry


    public final void close() throws IOException {
        zip.close();
    }

    public final ArchiveEntry getEntry(final String name) {
        ZipEntry entry = zip.getEntry(name);

        if (entry == null) {
            return null;
        }
View Full Code Here

TOP

Related Classes of gnu.zip.ZipEntry

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.