Properties次数配置文件
Posted zxl1010
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Properties次数配置文件相关的知识,希望对你有一定的参考价值。
import java.io.*; import java.util.Properties; public class PracticeUsed { public static void main(String[] args) throws IOException { Properties prop = new Properties(); File file = new File("count.ini"); if(!file.exists()) file.createNewFile(); FileInputStream fis = new FileInputStream(file); prop.load(fis); int count = 0; String value = prop.getProperty("time"); if(value!=null) { count = Integer.parseInt(value); if(count>=5) { System.out.println("您好,使用次数已到,拿钱!"); return; } } count++; prop.setProperty("time",count+""); FileOutputStream fos = new FileOutputStream(file); prop.store(fos,"haha"); fos.close(); fis.close(); } }
以上是关于Properties次数配置文件的主要内容,如果未能解决你的问题,请参考以下文章
springboot配置文件application-dev.properties,application-prod.properties,application-test.properties(代码片