首页 > 编程 > Java > 正文

JAVA:配置文件读取器

2019-11-17 06:27:22
字体:
来源:转载
供稿:网友

  〔config.PRoperties〕

[CMS properties]
cmsServerName=cms
cmsTemplateDirectoryName=template

[time out:minute]
time_out=300000

[administrator setting]
administrator=SA
admingroup=ADMINROLE

[web path setting]
innerresource=/accessControl/jsp/innerresource/

[picture path setting]
picturePath=C:/picture/
[log path setting]
logPath=c:/log1/


ConfigBundle.java

package creator.config;

import java.util.MissingResourceException;
import java.util.ResourceBundle;

/**
*
* <p>Title: ConfigBundle.java</p>
* <p>Description: </p>
* <p>Copyright: Copyright (c) 2004</p>
* <p>Company: </p>
* @author TanBo
* @version 1.0
*/
public class ConfigBundle{
private static ResourceBundle bundle;

/**
* init()
*/
public ConfigBundle()
{
}

/**
* @function getString
* @param s String
* @return String
*/
public static String getString(String s){
String s1 = null;
try{
s1 = getResourceBundle().getString(s);
}catch(MissingResourceException missingresourceexception){
System.out.println("ConfigBundle:getString error!"+missingresourceexception.toString());
}
return s1;
}

/**
* @function getResourceBundle
* @return ResourceBundle
*/
private static ResourceBundle getResourceBundle(){
if(bundle == null)
bundle = ResourceBundle.getBundle("creator.config.config");
return bundle;
}
}

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表