使用J2SE API读取Properties文件的六种方法
1。使用java.util.Properties类的load()方法示例: InputStream in = lnew BufferedInputStream(new FileInputStream(name)); Properties p = new Properties(); p.load(in);2。使用java.util.ResourceBundle类的getBun
转载
2010-04-18 23:42:00 ·
273 阅读 ·
0 评论