首页 > 编程语言 > 详细

java 读取properties 配置文件

时间:2014-12-19 02:11:49      阅读:302      评论:0      收藏:0      [点我收藏+]
	private static final String FILENAME = "dll/service.properties";
	private static Properties properties = null;
	
	//静态块
	static{
		
		properties = new Properties();
		InputStream in = null;
		
		try {
			//读取服务文件
			in = new FileInputStream(FILENAME);
			properties.load(in);
		} catch (IOException e) {
			ErrorPrint.sprintLog(e, log,"加载service.properties配置文件");
			e.printStackTrace();
		}finally{
			
			try {
				in.close();
			} catch (IOException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			}
		}
	}
	
	
	/**
	 * 获取service.properties文件
	 * @param key
	 * @return
	 */
	public static String getPropertiesValue(String key){
		if (properties.containsKey(key)) {
			String value = properties.getProperty(key);// 得到某一属性的值
			return value;
		} else
			return "";
		
	}

?

java 读取properties 配置文件

原文:http://lqi.iteye.com/blog/2167257

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!