Package fi.luomus.commons.config

Examples of fi.luomus.commons.config.Config


    assert(laji.equals("HIPCARL"));
  }

  private static void configExample() {
    try {
      Config config = new ConfigReader("C:/myconfigfile.properties");
      String password = config.get(Config.DB_PASSWORD);
      String something = config.get("something");
    } catch (FileNotFoundException e) {
      // yep
    }
  }
View Full Code Here

TOP

Related Classes of fi.luomus.commons.config.Config

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.