Java学习路上之Properties!

本文提供了一个Java程序示例,展示了如何读取和写入属性文件(.properties)的内容。通过两个不同的方法实现了对属性文件的读取,并演示了如何向另一个属性文件中追加内容。
public class TestProperties {
//创建一个带有指定默认值的空属性列表
Properties properties = new Properties();
FileOutputStream out =null;
InputStream in = null;
/**
* 读取属性文件内容
*/
public void ReadPorp1(){
//读取属性文件
try {
in = new BufferedInputStream(new FileInputStream("./test.properties"));
properties.load(in);
//将Set转成iterator来遍历
Iterator<String> it =properties.stringPropertyNames().iterator();
while(it.hasNext()){
String key = it.next();
System.out.println(key + ":" +properties.getProperty(key));
/**
* IcisReport.contextPath:192.168.3.143
* 有错误
* java.util.NoSuchElementException: Hashtable Enumerator
* 下面的方法是有问题的,视频中已经讲过了!除了第一个,其他元素目标无法确定
*/
//System.out.println(it.next() +":"+properties.getProperty(it.next()));
in.close();
}
} catch (Exception e) {
e.printStackTrace();
System.out.println("读取文件报错");
}
}
/**
* 读取属性文件2
*/
public void ReadPorp2(){
try {
in = new BufferedInputStream(new FileInputStream("./test.properties"));
properties.load(in);
Set<String> keySet = properties.stringPropertyNames();
for(String key : keySet){
System.out.println(key + ":"+properties.getProperty(key));
}
} catch (Exception e) {
e.printStackTrace();
System.out.println("读取文件报错");
}
}
/**
* 写入内容到属性文件
* @return
*/
public void WriteProp(){
//保存属性到b.properties中!
try {
//获得test.properties的属性列表
in = new BufferedInputStream(new FileInputStream("./test.properties"));
properties.load(in);
//以追加方式将所写数据保存属性到b.properties中!
out = new FileOutputStream("./b.properties",true);
properties.setProperty("hukr", "are you OK");
properties.store(out, "Content--Hukr");
out.close();
System.out.println("写入完成");
} catch (Exception e) {
e.printStackTrace();
System.out.println("写文件报错");
}
}

/**
* 测试程序
* @param args
*/
public static void main(String[] args) {
TestProperties testProp = new TestProperties();
//testProp.ReadPorp1();
//testProp.WriteProp();
testProp.ReadPorp2();
}

}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值