黑马程序员技术交流社区

标题: Properties问题 [打印本页]

作者: 陌路行者    时间: 2013-7-9 20:24
标题: Properties问题
本帖最后由 杨兴庭 于 2013-7-9 21:05 编辑
  1. import java.util.*;
  2. import java.io.*;
  3. class RunCount
  4. {
  5.         public static void main(String[] args) throws IOException
  6.         {
  7.                 Properties prop = new Properties();
  8.                 File file = new File("count.ini");
  9.                 if(!file.exists())
  10.                         file.createNewFile();
  11.                 FileInputStream fis =  new FileInputStream(file);
  12.                 prop.load(fis);
  13.                 int count = 0;
  14.                 String value = prop.getProperty("time");
  15.                 if(value!=null)
  16.                 {
  17.                         count = Integer.parseInt(value);
  18.                         if(count>=5)
  19.                         {
  20.                                 System.out.println("使用次数已到,请购买正版");
  21.                                 return ;
  22.                         }
  23.                 }               
  24.                 count++;
  25.                 prop.setProperty("time",count+" ");
  26.                 FileOutputStream fos = new FileOutputStream(file);
  27.                 prop.store(fos,"");
  28.                 fos.close();
  29.                 fis.close();

  30.         }
  31. }
复制代码
运行俩次就出现数字格式化异常;

作者: 草貌路飞    时间: 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