欢迎访问悦橙教程(wld5.com),关注java教程。悦橙教程  java问答|  每日更新
页面导航 : > > 文章正文

Java 读写 Properties 文件,javaproperties,//读操作Propert

来源: javaer 分享于  点击 31047 次 点评:145

Java 读写 Properties 文件,javaproperties,//读操作Propert


//读操作Properties properties = new Properties(); try{     properties.load(new FileInputStream("filename.properties")); } catch (IOException e) {     // implement catch logic}//写操作Properties properties = new Properties();try{    properties.store(        new FileOutputStream("filename.properties"), null);} catch (IOException e) {    // implement catch logic}
相关栏目:

用户点评