本帖最后由 途中ms前进 于 2015-5-25 21:08 编辑
记录程序运行次数,如果使用次数已到那么给出注册提示;
import java.io.*;
import java.util.*;
class PropertiesTimeDemo
{
public static void main(String[] args) throws IOException
{File file=new File("count.properties");
if(!file.exists())
file.createNewFile();
Properties pro=new Properties();
FileInputStream fos=new FileInputStream(file);
pro.load(fos);
int count=0;
String value=pro.getProperty("time");
if(value!=null)
count=Integer.parseInt(value);
if(count>=5)
{
System.out.println("次数已到请注册交钱哈哈哈哈");
}
pro.setProperty("time",count+"");
FileOutputStream fis=new FileOutputStream(file);
pro.store(fis,"");
fis.close();
fos.close();
}
}
//怎么不提示交钱 |
|