-
操作Proprietary文件查看全部
-
//读取配置文件,单例模式 public class PropertiesReader { private static Map<String,String> map = null; private PropertiesReader(){} public static Map<String,String> getProperties(){ if(map == null){ map = new HashMap<>(); Properties properties = new Properties(); // InputStream in = getClass().getResourceAsStream("type.properties"); InputStream in = PropertiesReader.class.getResourceAsStream("type.properties"); try { properties.load(in); Enumeration en = properties.propertyNames(); while (en.hasMoreElements()){ String key = (String) en.nextElement(); String value = properties.getProperty(key); map.put(key,value); } } catch (IOException e) { e.printStackTrace(); } } return map; } }查看全部
-
设计模式是一套被反复使用,多人知晓的,经过分类编目的,代码设计经验的总结。查看全部
-
应用工厂模式的情景查看全部
-
抽象工厂模式类图查看全部
-
工厂方法模式类图查看全部
-
fiuyfouyf查看全部
-
适用场景查看全部
-
优点,查看全部
-
工厂模式和抽象工厂模式对比查看全部
-
Bean查看全部
-
JDBC查看全部
-
抽象工厂模式类查看全部
-
代码设计查看全部
-
。。。查看全部
举报
0/150
提交
取消