《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 页 - - - - - - - - -