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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

{:2_32:}
public class Demo3 {
        public static void main(String[] args) throws IOException {
                System.out.println("Welcom");
                String str=System.getProperty("user.home");
                File file=new File(str+"\\soft.propreties");
                if(!file.exists()){
                        file.createNewFile();
                }
                Properties pro=new Properties();
                pro.load(new FileInputStream(file));
                String c=pro.getProperty("count");
                int count=1;
                if(c==null){
                        pro.setProperty("count", "1");
                }else{
                        count=Integer.valueOf(c);
                        if(count>=3){
                                System.out.println("试用到期,请缴费");
                                System.exit(0);
                        }else{
                                count++;
                                pro.setProperty("count", String.valueOf(count));
                        }
                }
                System.out.println("使用"+pro.getProperty("count")+"次");
                FileOutputStream fos=new FileOutputStream(file);
                pro.store(fos, "soft");
                fos.close();
        }
}

4 个回复

倒序浏览
有注释就好多了!
回复 使用道具 举报
麻烦加点注释吧
回复 使用道具 举报
看不懂  看不懂~
回复 使用道具 举报
不好意思啊,老忘记注释
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马