黑马程序员技术交流社区
标题:
Properties问题
[打印本页]
作者:
陌路行者
时间:
2013-7-9 20:24
标题:
Properties问题
本帖最后由 杨兴庭 于 2013-7-9 21:05 编辑
import java.util.*;
import java.io.*;
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();
}
}
复制代码
运行俩次就出现数字格式化异常;
作者:
草貌路飞
时间:
2013-7-9 20:33
有空格....count+" "
作者:
陌路行者
时间:
2013-7-9 20:37
草貌路飞 发表于 2013-7-9 20:33
有空格....count+" "
路飞兄真是高效率啊! 果然是那个小问题。。
真所谓差之毫谬之千里啊
作者:
草貌路飞
时间:
2013-7-9 20:43
哇哈哈..
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2