黑马程序员技术交流社区

标题: 怎么配置文件里的次数不增加呢,没发现哪里有错误啊,... [打印本页]

作者: dark_horse_xu    时间: 2014-10-25 19:54
标题: 怎么配置文件里的次数不增加呢,没发现哪里有错误啊,...
本帖最后由 dark_horse_xu 于 2014-10-26 00:07 编辑

import java.io.*;
import java.util.*;

public class RunCount1 {

        public static void main(String[] args) {
               
                FileInputStream fis = null;
                FileOutputStream  fos = null;
        try {        
                Properties pro = new Properties();
                File file = new File("haha22.properties");
                if(!(file.exists()))
                        file.createNewFile();
               
               
                        fis = new FileInputStream(file);
                        
                        pro.load(fis);

                        String value = pro.getProperty("times");
                        int count = 0;
                        if(value != null)
                        {
                                count = Integer.parseInt(value);
                                if (count >= 5) {
                                        System.out.println("您好!使用次数已到,请购买!");
                        }
                        }
                        count++;

                        pro.setProperty("time",count+"");
                        fos = new FileOutputStream(file);
                        pro.store(fos,"hahahahahhahhaha");
                                
                        
                }
                catch (Exception e) {
                        // TODO: handle exception
                        throw new RuntimeException("");
                }
                finally
                {
                        try {
                                if(fis !=null)
                                        fis.close();
                        } catch (IOException e2) {
                                // TODO: handle exception
                                throw new RuntimeException("");
                        }
                        try {
                                if(fos !=null)
                                        fos.close();
                        } catch (IOException e2) {
                                // TODO: handle exception
                                throw new RuntimeException("");
                        }
                        
                }
               
               
        }
}
怎么配置文件里的次数不增加呢,没发现哪里有错误啊,崩溃了


作者: dreamseekerkun    时间: 2014-10-25 22:40
你的getProperties("times")----setProperties("time")
发现了吧,一个有s一个没有

作者: dark_horse_xu    时间: 2014-10-26 00:06
dreamseekerkun 发表于 2014-10-25 22:40
你的getProperties("times")----setProperties("time")
发现了吧,一个有s一个没有

谢谢你,火眼金睛,真是郁闷了我好久,检查了好几次代码,都没错误啊




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2