摘要: 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()) { ... 阅读全文
posted @ 2013-01-11 12:03 hwj2wj 阅读(404) 评论(0) 推荐(0) 编辑