Java如何读取Properties文件中的属性并获取参数值呢?

书欣 Java经验 发布时间:2022-09-01 18:10:32 阅读数:14536 1
下文笔者讲述读取Properties文件中的属性的方法分享,如下所示
实现思路:
    采用Properties.class.getClassLoader()
					.getResourceAsStream
	方法即可读取Properties文件
例:
package com.java265.util;
 
import java.io.InputStream;
import java.util.Properties;
 
public class PropertyUtil {
 
	private static Properties p = null;
 
	public synchronized static void initP(String propertyName) throws Exception {
		if (p == null) {
			p = new Properties();
 
			InputStream inputstream = Properties.class.getClassLoader()
					.getResourceAsStream(propertyName);//<span style="color: rgb(0, 0, 255); font-family: Arial, sans-serif, Helvetica, Tahoma; font-size: 14px; line-height: 25px;">abc.properties</span>
			if (inputstream == null) {
				throw new Exception("inputstream " + propertyName
						+ " open null");
			}
			p.load(inputstream);
			inputstream.close();
			inputstream = null;
		}
	}
 
	public static String getValueByKey(String propertyName, String key) {
		String result = "";
		try {
			initP(propertyName);
			result = p.getProperty(key);
			return result;
		} catch (Exception e) {
			e.printStackTrace();
			return "";
		}
	}
 
	public static void main(String[] s) {
		// System.out.println(PWSProperties.getValueByKey("pws.properties","ws_split_chars"));
	}
}
版权声明

本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。

本文链接: https://www.Java265.com/JavaJingYan/202209/16620270904295.html

最近发表

热门文章

好文推荐

Java265.com

https://www.java265.com

站长统计|粤ICP备14097017号-3

Powered By Java265.com信息维护小组

使用手机扫描二维码

关注我们看更多资讯

java爱好者