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
读取并处理properties配置文件
最新推荐文章于 2021-02-28 08:35:03 发布
本文详细讲解了如何在Java项目中读取properties配置文件,包括使用Properties类加载文件,获取配置项,以及如何修改配置并保存。同时,讨论了处理配置文件时可能遇到的问题和最佳实践。
摘要由CSDN通过智能技术生成