摘要:
1.对properties文件的操作:public class PropUtil { private static Map<String, String> map = new HashMap<String,String>(); private PropUtil() { ResourceBundle prop = ResourceBundle.getBundle("config"); Enumeration<String> em = prop.getKeys(); while (em.hasMoreElements()) { ... 阅读全文