当前位置导航:炫浪网>>网络学院>>网页制作>>JSP教程

JAVA:配置文件读取器

〔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;
}
}



相关内容
赞助商链接