java 读取properties 配置文件

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

?

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。