本帖最后由 Porsche911 于 2014-6-5 15:27 编辑
- import java.io.*;
- import java.util.*;
- class RunCount
- {
- 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,"");
- fos.close();
- fis.close();
-
- }
- }
复制代码 上面这段代码是毕老师的原码。但是,如果把FileOutputStream fos = new FileOutputStream(file);这个代码写到 FileInputStream fis = new FileInputStream(file);后面,换句话说两句话连着写的话,即使不断重复运行程序,计数器一直是1,而不会自增这是为什么啊?
|
|