分享
 
 
 

java获取properties配置文件

王朝学院·作者佚名  2009-12-03
窄屏简体版  字體: |||超大  

package test.bwl;

import java.io.FileNotFoundException;

import java.io.IOException;

import java.io.InputStream;

import java.util.Properties;

public class Test {

private static Properties properties = new Properties();

public static void main(String[] args) {

try {

InputStream is = Test.class.getClassLoader().getResourceAsStream("cache.properties");

properties.load(is);

String size = properties.getProperty("cache.size");

writeLog("配置成功!" + size);

} catch (FileNotFoundException e) {

writeLog("配置文件不存在!" + e.getMessage());

} catch (IOException e) {

writeLog("读取配置文件IO错误!" + e.getMessage());

}

}

public static void writeLog(String strLog) {

System.out.println(strLog);

}

}

package test.bwl;

import java.io.FileNotFoundException;

import java.io.IOException;

import java.io.InputStream;

import java.util.Properties;

public class Test {

private static Properties properties = new Properties();

public static void main(String[] args) {

try {

InputStream is = Test.class.getClassLoader().getResourceAsStream("cache.properties");

properties.load(is);

String size = properties.getProperty("cache.size");

writeLog("配置成功!" + size);

} catch (FileNotFoundException e) {

writeLog("配置文件不存在!" + e.getMessage());

} catch (IOException e) {

writeLog("读取配置文件IO错误!" + e.getMessage());

}

}

public static void writeLog(String strLog) {

System.out.println(strLog);

}

}

package test.bwl;

import java.io.File;

import java.io.FileInputStream;

import java.io.FileNotFoundException;

import java.io.FilenameFilter;

import java.io.IOException;

import java.io.InputStream;

import java.util.Collections;

import java.util.HashMap;

import java.util.Map;

import java.util.Properties;

import java.util.regex.Pattern;

/**

* 配置信息管理器

*

* @author bwl

* @version 1.0

*/

public class ConfigManager {

/**

* 提供单例对象的静态内部类

*/

private static class SingletonHolder {

public static ConfigManager instance = new ConfigManager();

}

/**

* 获取对象实例

* @return

*/

public static ConfigManager getInstance() {

return SingletonHolder.instance;

}

/**

* 存储问题列表的Map

*/

private Map<String, Properties> name2properties;

/**

* 构造方法,请使用getInstance()获取实例

*/

private ConfigManager() {

name2properties = Collections.synchronizedMap(new HashMap<String, Properties>());

doInit();

}

/**

* 初始化方法

*/

private void doInit() {

try {

File path = new File("./conf/");

if (!path.exists()) {

System.out.println("ConfilgManager Init Error: There is no folder named 'conf' under src file.");

return;

}

File[] confFiles = path.listFiles(new DirFilter(".*\\.properties"));//\\

for (int i = 0; i < confFiles.length; i++) {

File f = confFiles[i];

if (f.exists() && f.isFile()) {

Properties properties = new Properties();

InputStream is = new FileInputStream(f);

properties.load(is);

name2properties.put(f.getName(), properties);

}

}

} catch (FileNotFoundException e) {

e.printStackTrace();

} catch (IOException e) {

e.printStackTrace();

}

}

/**

* 获取配置项的值

* @param fileName 配置文件的名称

* @param key 关键码的值

* @return 配置项

*/

public String getProperty(String fileName, String key) {

if (fileName == null || fileName.length() == 0) {

return null;

}

Properties prop = name2properties.get(fileName);

if (prop != null) {

return prop.getProperty(key);

}

return null;

}

/**

* 获取整形的配置项的值

* @param fileName 配置文件的名称

* @param keyName 关键码的值

* @return 如果正确则返回数字,否则返回-1

*/

public int getIntProperty(String fileName, String key) {

String value = this.getProperty(fileName, key);

int result = -1;

if (value == null) {

return result;

}

try {

result = Integer.parseInt(value);

return result;

} catch (Exception e) {

//Do nothing

}

return result;

}

/**

* 过滤属性文件的内部类

*/

class DirFilter implements FilenameFilter {

/**

* 记录文件名格式的正则对象

*/

private Pattern pattern;

public DirFilter(String regex) {

pattern = Pattern.compile(regex);

}

public boolean accept(File dir, String name) {

return pattern.matcher(new File(name).getName()).matches();

}

}

public static void main(String[] args) {

ConfigManager config = ConfigManager.getInstance();

System.out.println(config.getIntProperty("cache.properties", "cache.size") + "");

System.out.println(config.getProperty("javagroups.properties", "bus_name") + "");

}

}

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有