//用于记录应用程序运行次数的小程序.如果运行次数超过5次将会提示注册.
import java.io.*;
import java.util.*;
class RunCount
{
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,"");
fos.close();
fis.close();
}
}
配置文件中的time对应的值一直不改变(关了重新打开后还是不改变) 不知道代码哪里出错了 .
#
#Sat Mar 24 00:45:01 CST 2012
time=1
|
|