黑马程序员技术交流社区
标题:
properties和io配置文件程序
[打印本页]
作者:
李伟
时间:
2012-6-26 17:12
标题:
properties和io配置文件程序
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);/*
把下面那条语句移到这个位置后,当运行次数达到以后,输出完一次提示语句后,
再运行次数又会重新开始计算,把这条语句放到下面那个位置就不会出现这种情况,
这是为什么呢?*/
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,"hahahahahhaha");
prop.list(System.out);
fis.close();
fos.close();
}
}
作者:
周兴中
时间:
2012-6-26 18:27
本帖最后由 周兴中 于 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();
}
}
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2