java 操作属性_操作属性文件

操作属性文件*操作属性文件,可以为我们的程序带来更方便的移植性,下面是一个示例,可以读、写、更改属性

读采用了两种方式,一种是采用Properties类,另外一种是采用资源绑定类ResourceBundle类,

下面是源程序,里面有详细的注释:*/importjava.io.FileInputStream;importjava.io.FileOutputStream;importjava.io.InputStream;importjava.util.Properties;importjava.util.ResourceBundle;/***对属性文件(xx.properties)的操作

*注:属性文件一定要放在当前工程的根目录下,也就是放在与src目录在同一个目录下(我的JDevelop

*是这样的)*/publicclassOperatePropertiesFile {publicOperatePropertiesFile() {

}/***采用Properties类取得属性文件对应值

*@parampropertiesFileNameproperties文件名,如a.properties

*@parampropertyName属性名

*@return根据属性名得到的属性值,如没有返回""*/publicstaticString getValueByPropertyName(String propertiesFileName,String propertyName) {

String s="";

Properties p=newProperties();//加载属性文件读取类FileInputStream in;try{//propertiesFileName如test.propertiesin=newFileInputStream(propertiesFileName);//以流的形式读入属性文件p.load(in);//属性文件将该流加入的可被读取的属性中in.close();//读完了关闭s=p.getProperty(propertyName);//取得对应的属性值}catch(Exception e) {

e.printStackTrace();

}returns;

}/***采用ResourceBundel类取得属性文件对应值,这个只能够读取,不可以更改及写新的属性

*@parampropertiesFileNameWithoutPostfixproperties文件名,不带后缀

*@parampropertyName属性名

*@return根据属性名得到的属性值,如没有返回""*/publicstaticString getValueByPropertyName_(String propertiesFileNameWithoutPostfix,String propertyName) {

String s="";//如属性文件是test.properties,那此时propertiesFileNameWithoutPostfix的值就是testResourceBundle bundel=ResourceBundle.getBundle(propertiesFileNameWithoutPostfix);

s=bundel.getString(propertyName);returns;

}/***更改属性文件的值,如果对应的属性不存在,则自动增加该属性 *@parampropertiesFileNameproperties文件名,如a.properties *@parampropertyName属性名 *@parampropertyValue将属性名更改成该属性值 *@return是否操作成功*/publicstaticbooleanchangeValueByPropertyName(String propertiesFileName,String propertyName,String propertyValue) {booleanwriteOK=true;

Properties p=newProperties();

InputStream in;try{

in=newFileInputStream(propertiesFileName);

p.load(in);//in.close();

p.setProperty(propertyName,propertyValue);//设置属性值,如不属性不存在新建//p.setProperty("testProperty","testPropertyValue");FileOutputStream out=newFileOutputStream(propertiesFileName);//输出流p.store(out,"");//设置属性头,如不想设置,请把后面一个用""替换掉out.flush();//清空缓存,写入磁盘out.close();//关闭输出流}catch(Exception e) {

e.printStackTrace();

}returnwriteOK;

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值