读取并处理properties配置文件

本文详细讲解了如何在Java项目中读取properties配置文件,包括使用Properties类加载文件,获取配置项,以及如何修改配置并保存。同时,讨论了处理配置文件时可能遇到的问题和最佳实践。
摘要由CSDN通过智能技术生成
package weaver.interfaces.hrm.modeHrm.connSQL;

import java.io.BufferedInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.Enumeration;
import java.util.Properties;

import org.springframework.core.io.support.PropertiesLoaderUtils;

/**
 * 
 * @ClassName: TestProperties
 * @Description: 获取配置文件信息
 * @date: 2017年11月25日 上午10:56:00
 * @version: 1.0.0
 */
public class ReadProperties {

	/**
	 * 
	 * @Title: printAllProperty @Description: 输出所有配置信息 @param props @return
	 *         void @throws
	 */
	private static void printAllProperty(Properties props) {
		@SuppressWarnings("rawtypes")
		Enumeration en = props.propertyNames();
		while (en.hasMoreElements()) {
			String key = (String) en.nextElement();
			String value = props.getProperty(key);
			System.out.println(key + " : " + value);
		}
	}

	/**
	 * 根据key读取value
	 * 
	 * @Title: getProperties_1 @Description: 第一种方式:根据文件名使用spring中的工具类进行解析
	 *         filePath是相对路劲,文件需在classpath目录下
	 *         比如:config.properties在包com.test.config下,
	 *         路径就是com/test/config/config.properties
	 * 
	 * @param filePath @param keyWord @return @return String @throws
	 */
	public static String getProperties_1(String filePath, String keyWord) {
		Properties prop = null;
		String value = null;
		try {
			// 通过Spring中的PropertiesLoaderUtils工具类进行获取
			prop = PropertiesLoaderUtils.loadAllProperties(filePath);
			// 根据关键字查询相应的值
			value = prop.getProperty(keyWord);
		} catch (IOException e) {
			e.printStackTrace();
		}
		return value;
	}

	/**
	 * 读取配置文件所有信息
	 * 
	 * @Title: getProperties_1 @Description: 第一种方式:根据文件名使用Spring中的工具类进行解析
	 *         filePath是相对路劲,文件需在classpath目录下
	 *         比如:config.properties在包com.test.config下,
	 *         路径就是com/test/co
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值