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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

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

class  AppDomeTime
{
        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);

                //FileOutputStream fos = new FileOutputStream(file);
                //在这里定义输出流,程序可以重复运行,而不出现次数已到的提示.
               
                prop.load(fis);

                int count = 0;
                String value = prop.getProperty("time");

                if(value!=null)
                {
                        count = Integer.parseInt(value);
                        if(count>=2)
                        {       
                                System.out.println("试用次数已到,请购买此程序再次使用!");
                                return;
                        }
                }
                count++;

                prop.setProperty("time",count+"");

                FileOutputStream fos = new FileOutputStream(file);
                //为什么在这里定义输出流对象,程序运行两次后就可输出次数已到.
               
                prop.store(fos,"open");

                fis.close();
                fos.close();
        }

1 个回复

倒序浏览
没人能帮我解决这个问题吗?
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马