- import java.io.*;
- import java.util.*;
- class RunCount
- {
- public static void main(String[] args) throws Exception
- {
- Properties prop = new Properties();
- File file = new File("count.ini");
- if(!file.exists())
- file.createNewFile();
- FileInputStream fis = new FileInputStream(file);
- //FileOutputStream fos = new FileOutputStream(file);//位置【1】
- prop.load(fis);
- int count = 0;
- String value = prop.getProperty("time");
- if(value != null)
- {
- count = Integer.parseInt(value);
- if(count >= 5)
- {
- sop("您好!,使用次数已到,拿钱!!!");
- return ;
- }
- }
- count++;
- prop.setProperty("time",count+"");
- //FileOutputStream fos = new FileOutputStream(file);//位置【2】
- prop.store(fos,"");
- fis.close();
- fos.close();
- }
- public static void sop(Object obj)
- {
- System.out.println(obj);
- }
- }
复制代码 该程序的功能是将对程序使用次数存放到count.ini配置文件中,当超过五次使用后就显示信息。
疑惑:当关闭位置【1】代码,打开位置【2】代码,该程序能够实现该功能
但是当打开位置【1】代码,关闭位置【2】代码,改成程序功能就不能实现,而且,对此使用该程序时,
配置文件中 总是为:time=1
自己理解:是不是因为该输出流:FileOutputStream fos = new FileOutputStream(file);一创建 就会将原来的数据给清空了???
但,到底是为什么呢?
|