java 读取properties 配置文件_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > java 读取properties 配置文件

java 读取properties 配置文件

 2014/12/18 15:32:20  lqi  程序员俱乐部  我要评论(0)
  • 摘要:privatestaticfinalStringFILENAME="dll/service.properties";privatestaticPropertiesproperties=null;//静态块static{properties=newProperties();InputStreamin=null;try{//读取服务文件in=newFileInputStream(FILENAME);properties.load(in);}catch(IOExceptione)
  • 标签:配置文件 文件 配置 Java
class="java">	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 "";
		
	}

?

上一篇: httpclient Post请求 下一篇: java导出excel表格
发表评论
用户名: 匿名