黑马程序员技术交流社区
标题:
关于Properties写一个程序使用次数的问题
[打印本页]
作者:
逆世界ylm
时间:
2014-12-17 09:48
标题:
关于Properties写一个程序使用次数的问题
写了几遍,跟着老毕的逻辑也转了几圈,我写的还是整不出来??,求指点
public static void run_count()
{
Properties p = new Properties();
File file = new File("d:\\test\\count3.ini");
if(!file.exists())
{
try {
file.createNewFile();
} catch (IOException e) {
e.printStackTrace();
}
}
FileInputStream fis = null;
FileOutputStream fos = null;
try {
fis = new FileInputStream(file);
fos = new FileOutputStream(file);
p.load(fis);
int count = 0;
String value = p.getProperty("time");
if(value != null)
{
count = Integer.parseInt(value);
if(count >= 5)
{
System.out.println("到期了");
return;
}
}
count++;
p.setProperty("time", count+"");
p.store(fos, "");
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}finally{
try {
if(fos != null)
fos.close();
} catch (IOException e) {
e.printStackTrace();
}
try {
if(fis != null)
fis.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
复制代码
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2