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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

import java .io.*;
import java.util.*;
class Properties3
{
        public static void main(String[] args) throws IOException
        {
                File f=new File("ddd.txt");
                Properties prop=new Properties();
                if (!f.exists())
                        f.createNewFile();
               
                FileInputStream fis=new FileInputStream(f);
                prop.load(fis);
                String value=prop.getProperty("time");
                int count=0;
                if (value!=null)
                {
                        count=Integer.parseInt(value);
                        if (count>5)
                        {
                                System.out.println("该付钱了");
                        }
                }
                count++;
               
                prop.setProperty("time",count+"");
                FileOutputStream fos=new FileOutputStream(f);
                prop.store(fos,"hah");
                fis.close();
                fos.close();
        }
}

3 个回复

倒序浏览
zhuwenjia 来自手机 中级黑马 2015-12-5 23:09:28
沙发
谢谢,学习了
回复 使用道具 举报
学习学习!!!!!!
回复 使用道具 举报
不错哦
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马