properties例子

来源:互联网 发布:黑客收徒网站源码 编辑:程序博客网 时间:2024/04/28 23:24
public void setProp(String value,String name,String path)throws IOException{//写入属性文件
  Properties pro=new Properties();
  pro.setProperty(value,name);
  try{
   FileOutputStream fos=new FileOutputStream(path);
   pro.store(fos,"style pro");
  }
  catch(IOException e){
   e.printStackTrace();
  }
 }
原创粉丝点击