- Properties prop=new Properties();
-
- File file=new File("count.ini");
- if(!file.exists())
- file.createNewFile();
- FileInputStream fis=new FileInputStream(file);
- prop.load(fis);
- String value=prop.getProperty("time");
- int cont=0;
- if(value!=null)
- {
- cont=Integer.parseInt(value);
- if(cont>=5)
- {
- System.out.println("mmmm");
- return;
-
- }
-
- }
- cont++;
-
- prop.setProperty("time", cont+"");
- FileOutputStream fos=new FileOutputStream(file);
- prop.store(fos, " ");
- fos.close();
- fis.close();
复制代码
为啥 我用的cont 来命名文件 cont的局部变量就不行呢 把文件名换了 就没有问题了 求大神们指点一二
Exception in thread "main" java.lang.NumberFormatException: For input string: "1 "
at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65)
at java.lang.Integer.parseInt(Integer.java:580)
at java.lang.Integer.parseInt(Integer.java:615)
at helloword.Test13.main(Test13.java:28)
|
|