Package org.geoforge.io.util.jar

Examples of org.geoforge.io.util.jar.JarHelper


   {
      String strPathAbsSpaceWork = GfrWrpUsrSpcDspPrtAppRoot.getInstance().getValueLastChildFromHistory();
      File fleDirTarget = new File(strPathAbsSpaceWork + File.separator + strIdTarget);
     
      fleDirTarget.mkdir();
      JarHelper jarUtil = new JarHelper();
      jarUtil.unjarDir(fleJarFileSource, fleDirTarget);
      
      super.setChanged();
      Object obj = new GfrEvtMdlDtaSpcPrtImportPrj(strIdTarget, strPathAbsSpaceWork);
      super.notifyObservers(obj);
     
View Full Code Here


     
     
   
      // jarring
      Manifest man = GfrManJarSpcPrj.s_create();
      JarHelper jarUtil = new JarHelper(man);
      jarUtil.jarDir(fleFolderTemp, fleJarFileTarget);
     
      String strMessage = "Sucessfully exported project name:";
      strMessage += "\n  " + strNameSource;
      strMessage += "\n\nto file:";
      strMessage += "\n   " + fleJarFileTarget.getAbsolutePath();
View Full Code Here

         GfrOptionPaneAbs.s_showDialogWarning(super._app.getFrame(), strMessage);
         return;
      }
     
      fleDirTarget.mkdir();
      JarHelper jarUtil = new JarHelper();
      jarUtil.unjarDir(fleJarFileSource, fleDirTarget);
     
      // ---
      GfrWrpBasDatSpcRoot.getInstance().save(fleDirTarget.getAbsolutePath());
      // update actions
      updateStateActions();
View Full Code Here

      /*
       * ATTN: tempo directory not deleted !!!!!!!!
       */
     
      Manifest man = GfrManJarSpcWrk.s_create();
      JarHelper jarUtil = new JarHelper(man);
      jarUtil.jarDir(fleFolderTemp, fleJarFileTarget);
     
      String strMessage = "Sucessfully exported workspace:";
      strMessage += "\n  " + strPathAbsFolderSource;
      strMessage += "\n\nto file:";
      strMessage += "\n   " + fleJarFileTarget.getAbsolutePath();
View Full Code Here

TOP

Related Classes of org.geoforge.io.util.jar.JarHelper

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.