浅谈java Properties类的使用基础
properties类继承自hashtable,通常和io流结合使用。它最突出的特点是将key/value作为配置属性写入到配置文件中以实现配置持久化,或从配置文件中读取这些属性。它的这些配置文件的规范后缀名为".properties"。表示了一个持久的属性集。
需要注意几点:
无论是key还是value,都必须是string数据类型。
虽然继承自hashtable,但它却没有使用泛型。
虽然可以使用hashtable的put方法,但不建议使用它,而是应该使用setproperty()方法。
多个线程可以共享单个properties对象而无需进行外部同步。即线程同步。
如果想将properties集合中的属性集写入到配置文件中,使用store()方法;如果想从".properties"配置文件中读取属性,可以使用load()方法。
以下是properties类的常用方法:
setproperty(string k,string v):调用hashtable的put方法,向properties集合中添加key/value,返回值为key对应的旧值,如没有旧值则返回null。注意k和v都是string类型。
getproperty(string k):获取properties集合中key对应的value。
store(outputstream o,string comment):将properties属性集合写入到输出流o中,注意,注释comment必不可少。 - load(inputstream i):从.properties配置文件中按照字节读取其中的属性。
load(reader r):从.properties配置文件中按照字符读取其中的属性。
stringpropertynames():返回properties集合中由key部分组成的set集合。
以下是向properties集合中增、取、遍历key/value以及和io流结合使用的简单示例。
import java.util.*; import java.io.*; public class prop { public static void main(string[] args) throws ioexception { properties prop = new properties(); //向properties集合prop中存储key/value prop.setproperty("filename","a.avi"); prop.setproperty("size","5m"); //prop集合存储key/value的格式 system.out.println(prop); //从prop中取出单个key/value prop.getproperty("filename"); //遍历prop集合 set<string> keys = prop.stringpropertynames(); for (string key : keys) { string value = prop.getproperty(key); system.out.println(key+"="+value); } //properties集合和io输出流集合:将prop集合中的属性集写入到文件中实现持久化 fileoutputstream fos = new fileoutputstream("d:/temp/my.properties"); prop.store(fos,"store test"); //properties集合和io输出流集合:从properties文件中读取属性集到prop1集合中 //fileinputstream fis = new fileinputstream("d:/temp/my.properties"); filereader fr = new filereader("d:/temp/my.properties"); properties prop1 = new properties(); //now it's a null properties prop1.load(fr); system.out.println("new prop:"+prop1); fos.close(); fr.close(); } }
以上这篇浅谈java properties类的使用基础就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。