2022年java对properties文件的操作 .pdf

上传人:Che****ry 文档编号:27255992 上传时间:2022-07-23 格式:PDF 页数:3 大小:44.34KB
返回 下载 相关 举报
2022年java对properties文件的操作 .pdf_第1页
第1页 / 共3页
2022年java对properties文件的操作 .pdf_第2页
第2页 / 共3页
点击查看更多>>
资源描述

《2022年java对properties文件的操作 .pdf》由会员分享,可在线阅读,更多相关《2022年java对properties文件的操作 .pdf(3页珍藏版)》请在taowenge.com淘文阁网|工程机械CAD图纸|机械工程制图|CAD装配图下载|SolidWorks_CaTia_CAD_UG_PROE_设计图分享下载上搜索。

1、对 properties文件的操作1. 资源文件所存放的位置资源文件妨碍classpath下,即工程项目的class包下2. 获取系统资源文件的方式有2 中 a. 通过 InputStream inputstream = ClassLoader.getSystemResourceAsStream(info.properties); b. 通过 InputStream inputstream = this.getClass().getResourceAsStream(/info.properties); 采用第一种方式获取资源文件时,文件不以/ 开头,而采用方法b 的话,文件必须/ 开头3. 提

2、取加载资源文件的信息Java 代码Properties properties = new Properties(); InputStream inputstream = ClassLoader.getSystemResourceAsStream(info.properties); / InputStream inputstream = this.getClass().getResourceAsStream(/info.properties); properties.load(inputstream);4. 操作资源文件 a. 根据 key 值在资源文件中查询value 值 1. getProp

3、erty(String key) 用指定的键在此属性列表中搜索属性。 2. getProperty(String key, String defaultValue) 用指定的键在属性列表中搜索属性。 b. 获取所有的键值对的信息Java 代码Enumeration enumvalue = (Enumeration) properties.propertyNames();/ 返回属性列表中所有键的枚举,如果在主属性列表中未找到同名的键,则包括默认属性列表中不同的键while (enumvalue.hasMoreElements() 名师资料总结 - - -精品资料欢迎下载 - - - - - -

4、 - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 1 页,共 3 页 - - - - - - - - - String key = enumvalue.nextElement(); System.out.println(key + : + properties.getProperty(key); c. 向资源文件中添加键值信息,如果key 值相同就会将原有的信息覆盖Java 代码URL url = ClassLoader.getSystemResource(info.properties); File file = new File(url.toU

5、RI(); InputStream is = new FileInputStream(file); properties.load(is); properties.setProperty(key, value); OutputStream fos = new FileOutputStream(file); properties.store(fos, null); fos.flush(); is.close(); d. 删除相关的键值对Java 代码File file = new File(ClassLoader.getSystemResource(info.properties).toURI(

6、); InputStream is = new FileInputStream(file); properties.load(is); properties.remove(key); OutputStream fos = new FileOutputStream(file); properties.store(fos, null); is.close(); fos.flush(); fos.close();File file = new File(ClassLoader.getSystemResource(info.properties).toURI(); InputStream is = n

7、ew FileInputStream(file); 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 2 页,共 3 页 - - - - - - - - - properties.load(is); properties.remove(key); OutputStream fos = new FileOutputStream(file); properties.store(fos, null); is.close(); fos.flush(); fos.close(); 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 3 页,共 3 页 - - - - - - - - -

展开阅读全文
相关资源
相关搜索

当前位置:首页 > 教育专区 > 高考资料

本站为文档C TO C交易模式,本站只提供存储空间、用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。本站仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知淘文阁网,我们立即给予删除!客服QQ:136780468 微信:18945177775 电话:18904686070

工信部备案号:黑ICP备15003705号© 2020-2023 www.taowenge.com 淘文阁