Package org.deri.eurostat.zip

Examples of org.deri.eurostat.zip.UnCompressXML


  }
 
  public void unCompressZipFiles(String tempZipPath, String tempDataPath)
  {
    writeLog("UnCompressing files...");
    UnCompressXML obj = new UnCompressXML();
   
    File dir = new File(tempZipPath);
   
    File[] files = dir.listFiles();
   
    for(File f:files)
      obj.parseZipFile(f.getAbsolutePath(), tempDataPath);
  }
View Full Code Here

TOP

Related Classes of org.deri.eurostat.zip.UnCompressXML

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.