當前位置: 首頁>>代碼示例>>Java>>正文


Java PropertiesConfiguration.load方法代碼示例

本文整理匯總了Java中org.apache.commons.configuration.PropertiesConfiguration.load方法的典型用法代碼示例。如果您正苦於以下問題:Java PropertiesConfiguration.load方法的具體用法?Java PropertiesConfiguration.load怎麽用?Java PropertiesConfiguration.load使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.apache.commons.configuration.PropertiesConfiguration的用法示例。


在下文中一共展示了PropertiesConfiguration.load方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: PropertyFileModifier

import org.apache.commons.configuration.PropertiesConfiguration; //導入方法依賴的package包/類
public PropertyFileModifier(File propertiesFile) throws ConfigurationException
{
	this.file = propertiesFile;
	props = new PropertiesConfiguration();
	props.setLayout(new ExtendedPropertiesLayout(props));
	props.setEncoding("UTF-8");
	props.setDelimiterParsingDisabled(true);

	if( file.exists() )
	{
		props.load(file);
	}
}
 
開發者ID:equella,項目名稱:Equella,代碼行數:14,代碼來源:PropertyFileModifier.java

示例2: getConfiguration

import org.apache.commons.configuration.PropertiesConfiguration; //導入方法依賴的package包/類
private Configuration getConfiguration(String name) {
	Configuration configuration = null;
	URL url = Thread.currentThread().getContextClassLoader().getResource(name);
	if (url != null) {
		PropertiesConfiguration pc = new PropertiesConfiguration();
		pc.setURL(url);
		
		// Set reloading strategy 
		String dynamicReload = ApplicationProperties.getProperty("tmtbl.properties.dynamic_reload", null);
		if (dynamicReload!=null && dynamicReload.equalsIgnoreCase("true")) {
			long refreshDelay = Constants.getPositiveInteger(
					ApplicationProperties.getProperty("tmtbl.properties.dynamic_reload_interval"), 15000 );
			
			FileChangedReloadingStrategy strategy = new FileChangedReloadingStrategy();
			strategy.setRefreshDelay(refreshDelay); 
			pc.setReloadingStrategy(strategy);
			
			pc.addConfigurationListener(new MessageResourcesCfgListener(pc.getBasePath()));
		}			
		
		try {
			pc.load();
			configuration = pc;
		} catch (ConfigurationException e) {
			Debug.error("Message Resources configuration exception: " + e.getMessage());
		}
	}

	return configuration;
}
 
開發者ID:Jenner4S,項目名稱:unitimes,代碼行數:31,代碼來源:MessageResources.java

示例3: loadProperties

import org.apache.commons.configuration.PropertiesConfiguration; //導入方法依賴的package包/類
public boolean loadProperties() {
	try (FileInputStream finput = new FileInputStream("resources/Bot.properties")) {
		PropertiesConfiguration config = new PropertiesConfiguration();
		config.load(finput, "UTF-8");
		config.setEncoding("UTF-8");
		botConfig.setToken(config.getString("BotToken"));
		botConfig.setAvatar(config.getString("Avatar"));
		botConfig.setBotOwnerId(config.getLong("BotOwnerId", 0));
		botConfig.setBotInviteLink(config.getString("InviteLink"));
		botConfig.setMaxSongLength(config.getInt("MaxSongLength", 15));
		botConfig.setCompanionBot(config.getBoolean("MusicCompanion", false));
		botConfig.setDefaultSSLPort(config.getInt("DefaultSSLPort", 8443));
		botConfig.setDefaultInsecurePort(config.getInt("DefaultInsecurePort", 8080));

		Configuration subset = config.subset("apikey");
		Iterator<String> iter = subset.getKeys();
		while(iter.hasNext()) {
			String key = iter.next();
			String val = subset.getString(key);
			if(val.length() > 0) {
				this.apiKeys.put(key, val);
				logger.info("Added API key for: {}", key);
			}
		}
		StatusChangeJob.setStatuses(config.getStringArray("StatusRotation"));
		return true;
	} catch (Exception e) {
		e.printStackTrace();
		return false;
	}
}
 
開發者ID:paul-io,項目名稱:momo-2,代碼行數:32,代碼來源:Bot.java

示例4: E2EConfigLoader

import org.apache.commons.configuration.PropertiesConfiguration; //導入方法依賴的package包/類
public E2EConfigLoader(String defaultFileName) {
    String fileName = getFileNameFromVmOptions();
    if (fileName == null) {
     fileName = defaultFileName;
    }
    PropertiesConfiguration propCfg = new PropertiesConfiguration();
    try {
        propCfg.load(getClass().getClassLoader().getResourceAsStream(fileName));
    } catch (Exception e) {
        log.error("Failed to load " + fileName, e);
    }
    config = propCfg;
}
 
開發者ID:Comcast,項目名稱:redirector,代碼行數:14,代碼來源:E2EConfigLoader.java


注:本文中的org.apache.commons.configuration.PropertiesConfiguration.load方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。