Java读写配置文件prop.properties

Posted yb

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java读写配置文件prop.properties相关的知识,希望对你有一定的参考价值。

 

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的主要内容,如果未能解决你的问题,请参考以下文章

java 顺序 读写 Properties 配置文件

java配置文件的读写

Java+操作配置文件+yaml文件读写

Java+操作配置文件+yaml文件读写

Java 读写Properties配置文件

Java 读写Properties配置文件