读取Properties
Posted dahei96
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了读取Properties相关的知识,希望对你有一定的参考价值。
package com.infotech.common.util; import java.io.FileNotFoundException; import java.io.IOException; import java.util.Properties; /** * @ClassName Confkit.java * @Description TODO * * @author D.C * @version V1.0 * @CreateDate 2017年7月5日 下午3:29:05 * */ public class Confkit { private static Properties props = new Properties(); static { try { props.load(Thread.currentThread().getContextClassLoader().getResourceAsStream("conf.properties")); } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } } public static String get(String key) { return props.getProperty(key); } public static void setProps(Properties p){ props = p; } }
以上是关于读取Properties的主要内容,如果未能解决你的问题,请参考以下文章