A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

本帖最后由 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("");
                        }
                        
                }
               
               
        }
}
怎么配置文件里的次数不增加呢,没发现哪里有错误啊,崩溃了

2 个回复

倒序浏览
你的getProperties("times")----setProperties("time")
发现了吧,一个有s一个没有
回复 使用道具 举报
dreamseekerkun 发表于 2014-10-25 22:40
你的getProperties("times")----setProperties("time")
发现了吧,一个有s一个没有

谢谢你,火眼金睛,真是郁闷了我好久,检查了好几次代码,都没错误啊
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马