Package org.vietspider.common.io

Examples of org.vietspider.common.io.PropertiesFile.load()


  }
 
  public synchronized void load() {
    PropertiesFile file = new PropertiesFile(true);
    try {
      properties = file.load(UtilFile.getFile("client", "config.properties"));
    } catch (Exception e) {
      LogService.getInstance().setThrowable(e);
    }
  }
View Full Code Here


 
  public ClientRM(String name) {
    PropertiesFile file = new PropertiesFile(true);
    Properties properties = new Properties();
    try {
      properties = file.load(UtilFile.getFile("client", "config.properties"));
    } catch (Exception e) {
      LogService.getInstance().setThrowable(e);
    }
    try {
      loadResources(ApplicationFactory.class, properties, name, true);
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.