Package org.hsqldb_voltpatches.lib.tar

Examples of org.hsqldb_voltpatches.lib.tar.TarReader


        File collectionTgz = new File(voltDbRootPath, prefix + ".tgz");
        assertTrue(collectionTgz.exists());

        File collectionDecompressed = new File(voltDbRootPath, prefix);
        TarReader tarReader = new TarReader(collectionTgz, TarReader.OVERWRITE_MODE, null, null, collectionDecompressed);
        tarReader.read();
        assertTrue(collectionDecompressed.exists());
        return collectionDecompressed;
    }
View Full Code Here

TOP

Related Classes of org.hsqldb_voltpatches.lib.tar.TarReader

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.