java读取properties文件工具
Posted 豆苗稀
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java读取properties文件工具相关的知识,希望对你有一定的参考价值。
public class PropertiesUtil { public static String get(String filePath, String key) { String val = null; Properties prop = new Properties(); InputStream in = null; in = PropertiesUtil.class.getClassLoader().getResourceAsStream(filePath); try { prop.load(in); val = (String) prop.get(key); } catch (IOException e) { e.printStackTrace(); } try { in.close(); } catch (IOException e) { e.printStackTrace(); } return val; } }
以上是关于java读取properties文件工具的主要内容,如果未能解决你的问题,请参考以下文章
Java读取properties文件工具类并解决控制台中文乱码
java 读取配置文件工具类 (how to read values from properties file in java)