Package uk.co.mmscomputing.util

Examples of uk.co.mmscomputing.util.JarFile


      String dn=cn.substring(0,cn.lastIndexOf('.'));
      String base=dn.replace('.',File.separatorChar)+File.separator;
      put(basePath,base);

      String cfn=base+conffn;         // search 'conffn' is in same directory as class main
      if(new JarFile(cfn).exists()){  // load defaults
        ConfigurationReader cr=new ConfigurationReader(cfn);
        cr.read(this);cr.close();
      }
      put(confPath,cfn);              // set conffn
//      System.err.println("ConfigurationMap(Class): confPath = "+getString(confPath));
View Full Code Here

TOP

Related Classes of uk.co.mmscomputing.util.JarFile

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.