首页 > 代码库 > web开发学习笔记(二)
web开发学习笔记(二)
读取properties文件里的内容:
properties文件里的内容都是以键值对的形式存放的,即 key=value 的形式。
读取properties文件内容,Java代码:
Properties properties = new Properties();InputStream inputStream = new FileInputStream("properties文件的存放路径");properties.load(inputStream);inputStream.close();//根据key取得properties里的valueString value= http://www.mamicode.com/properties.getProperty(key);>
向properties文件中写入内容,Java代码:
Properties properties = new Properties();OutputStream outputStream = new FileOutputStream("properties文件的存放路径"); properties.setProperty(key,value);properties.store(outputStream,"一些说明信息,如作者信息等");outputStream .close();
web开发学习笔记(二)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。