码迷,mamicode.com
首页 > 编程语言 > 详细

Java读写配置文件prop.properties

时间:2018-07-05 12:08:37      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:set   source   his   conf   false   prope   tst   res   exce   

 

Java读写配置文件prop.properties 

@Test
public void fun() throws IOException{
Properties prop=new Properties();
String path2=this.getClass().getResource("/test/conf/file.properties").getPath();
System.out.println(path2);
InputStream in=new BufferedInputStream(new FileInputStream(path2));
prop.load(in);
Integer count=Integer.parseInt(prop.getProperty("count"));
System.out.println(count);
in.close();

FileOutputStream oFile = new FileOutputStream(path2, false);
count++;
prop.setProperty("count", count.toString());
prop.store(oFile,"count" );
oFile.close();
//6位数,不足补零
String string=String.format("%6d", count).replace(" ", "0");
System.out.println(string);
}

Java读写配置文件prop.properties

标签:set   source   his   conf   false   prope   tst   res   exce   

原文地址:https://www.cnblogs.com/mryangbo/p/9267380.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!