摘要: Java中Properties类用来处理有键值对的属性文件,利用它可以快速地把属性文件加载到内存,也可以快速把属性存放到文件中。它继承自hashTable类,除了拥有hashTable所有拥有的所有方法外,另外它还附加了用于与文件流操作的方法。下面示例展示了Properties类的用法: 1 public class PropertiesTest { 2 public static void main(String[] args)throws Exception { 3 4 Properties p = new Properties(); 5 ... 阅读全文
posted @ 2013-05-26 22:09 丁丁木木 阅读(171) 评论(0) 推荐(0) 编辑