码迷,mamicode.com
首页 > 其他好文 > 详细

Properties、次数配置文件

时间:2019-10-11 15:16:46      阅读:70      评论:0      收藏:0      [点我收藏+]

标签:exception   integer   str   code   except   return   rop   turn   col   

import java.io.*;
import java.util.Properties;
public class PracticeUsed  {

    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);
        
        prop.load(fis);
        
        int count = 0;
        String value = prop.getProperty("time");
        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,"haha");
        
        fos.close();
        fis.close();
        
    }
}

 

Properties、次数配置文件

标签:exception   integer   str   code   except   return   rop   turn   col   

原文地址:https://www.cnblogs.com/zxl1010/p/11654284.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!