Package org.infoglue.deliver.util

Examples of org.infoglue.deliver.util.CompressionHelper.unzip()


    CompressionHelper ch = new CompressionHelper();
    String extractFolder = CmsPropertyHandler.getDigitalAssetUploadPath() + File.separator + "ImportArchive_" + System.currentTimeMillis();
    logger.info("Extracting " + file.getPath() + " to " + extractFolder);
    File importFolder = new File(extractFolder);
    importFolder.mkdir();
    ch.unzip(file, importFolder);
   
    processBean.updateProcess("Unzip of archive took " + (t.getElapsedTime() / 1000) + " seconds");
   
    try
    {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.