JavaSE配置文件java.util.Properties单例模式Singleton
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaSE配置文件java.util.Properties单例模式Singleton相关的知识,希望对你有一定的参考价值。
PropertyMgr.java
1 package config; 2 3 import java.io.IOException; 4 import java.util.Properties; 5 6 public class PropertyMgr { 7 8 private static final Properties props = new Properties(); 9 10 static { 11 try { 12 props.load(PropertyMgr.class.getClassLoader().getResourceAsStream("config/tank.properties")); 13 } catch (IOException e) { 14 e.printStackTrace(); 15 } 16 } 17 18 private PropertyMgr() {} 19 20 public static String getProperty(String key) { 21 return props.getProperty(key); 22 } 23 }
tank.properties
initTankCount=10
以上是关于JavaSE配置文件java.util.Properties单例模式Singleton的主要内容,如果未能解决你的问题,请参考以下文章