本帖最后由 周兴中 于 2012-6-26 18:31 编辑
import java.io.*;
import java.util.*;
class PropertyDemo
{
public static void main(String[] args) throws IOException
{
Properties prop=new Properties();
File file=new File("abc.ini");
if(!file.exists())
file.createNewFile();
FileInputStream fis=new FileInputStream(file);
prop.load(fis);
prop.setProperty("liwei","27");
int count=0;
FileOutputStream fos=new FileOutputStream(file);/*如果你将文件写入流放到此处,那么当文件count>=5时,程序跳出,没有执行关闭资源的操作,那么文件信息就没有写入文件,此时文件内容是空的*/
String value=prop.getProperty("time");//那么获取该文件time所对应的值将会为空,然后count又从1开始
if(value!=null)
{
count=Integer.parseInt(value);
if(count>=5)
{
System.out.println("次数已到,请注册");
return;
}
}
count++;// 由于time所对应的值为空,count++后为1,执行后面的语句,可以正常关闭资源.
prop.setProperty("time",count+"");
//FileOutputStream fos=new FileOutputStream(file);//所以文件输出流应该放在验证之后,这样才能保证当使用次数达到最大次数时,可以正常关闭文件,在下次打开程序时,程序先以只读方式读取count的值,如果为最大,就不会再以写的方式打开文件,而导致写入流没关闭资源,数据丢失,从而保证数据有效.
prop.store(fos,"hahahahahhaha");
prop.list(System.out);
fis.close();
fos.close();
}
}
|