本帖最后由 狼王 于 2013-7-7 10:35 编辑
- <p><p>public class PropertiesTest {
- public static void main(String[] args) throws IOException {
- //将配置文件封装成File对象
- File file = new File("count.ini");
- if(!file.exists()){
- file.createNewFile();
- }
- FileInputStream fis = new FileInputStream(file);
- Properties prop = new Properties();
- prop.load(fis);
- //从集合中通过键获取次数
- String value = prop.getProperty("time");
- //定义计数器,记录获取到的次数
- int count = 0;
- 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();
- }
- }
- 在毕老师的视频中,讲到Properties时,讲了这样一个例子:用于记录应用程序运行的次数。</p><p>如果使用次数已到,那么给出注册提示。可是我的代码和他一样的,但结果我的代码不会自增,</p><p>即无论你运行多少次,键time的值永远是0。我不知道错哪了,请问哪位大侠能指点一下。感</p><p>激不尽。</p>
复制代码 |