A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© yujiangjiao 中级黑马   /  2014-3-31 00:14  /  1023 人查看  /  2 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

  1. import java.io.*;
  2. import java.util.*;
  3. class  RunCountt
  4. {
  5.         public static void main(String[] args) throws IOException
  6.         {
  7.         Properties p=new Properties();//创建一个属性集合
  8.         File file=new File("count.ini");//创建File 对象 配置文件的格式使用ini格式
  9.         if(!file.exists())//判断文件对象是否存在
  10.                 file.createNewFile();//如果不存在就创建一个
  11.        
  12.         FileInputStream fis=new FileInputStream(file);//创建输入流 可以传入File型
  13.         p.load(fis);//从流中获取属性列表
  14.         int count=0;//定义计数器
  15.         String value=p.getProperty("time");//Properties 中 根据键name 获取值value
  16.         if (value!=null)//开始时value 为null 如果value 不为null
  17.                 {
  18.                         count=Integer.parseInt(value);//将字符串形式value 封装成基本数据类型的类赋给count
  19.                         if (count>=5)
  20.                         {
  21.                                 System.out.println("使用次数已到,需要注册!");
  22.                                         return ;
  23.                         }
  24.                 }

  25.                

  26.                 count++;//count 值为1
  27.                 p.setProperty("time",count+"");//设置Properties 键和值
  28.                 //创建输出流
  29.                 FileOutputStream fos=new FileOutputStream("count.ini");//写入"count.ini"中
  30.                 p.store(fos,"");//  参数为输出流和注释 将设置后的属性从流中存入"count.ini"文件中
  31.                 fis.close();
  32.                 fos.close();
  33.         }
  34. }
复制代码

异常提示:
f:\360.jpg
Exception in thread "main" java.lang.NumberFormatException: For input string: "c
ount"
        at java.lang.NumberFormatException.forInputString(NumberFormatException.
java:48)
        at java.lang.Integer.parseInt(Integer.java:449)
        at java.lang.Integer.parseInt(Integer.java:499)
        at RunCountt.main(RunCountt.java:18)
不明白是哪里出错了,p.setProperty("time",count+"");这里已经变成String类型了 ,求高手解答,谢谢

2 个回复

倒序浏览
表示没有出错
import java.io.*;
import java.util.*;
class  Test
{
        public static void main(String[] args) throws IOException
        {
        Properties p=new Properties();//创建一个属性集合
        File file=new File("C:\\count.ini");//创建File 对象 配置文件的格式使用ini格式
        if(!file.exists())//判断文件对象是否存在
                        file.createNewFile();//如果不存在就创建一个
       
        FileInputStream fis=new FileInputStream(file);//创建输入流 可以传入File型
        p.load(fis);//从流中获取属性列表
        int count=0;//定义计数器
        String value=p.getProperty("time");//Properties 中 根据键name 获取值value
        if (value!=null)//开始时value 为null 如果value 不为null
                        {
                                        count=Integer.parseInt(value);//将字符串形式value 封装成基本数据类型的类赋给count
                                        if (count>=5)
                                        {
                                                        System.out.println("使用次数已到,需要注册!");
                                                                        return ;
                                        }
                        }

                       

                        count++;//count 值为1
                        p.setProperty("time",count+"");//设置Properties 键和值
                        //创建输出流
                        FileOutputStream fos=new FileOutputStream("C:\\count.ini");//写入"count.ini"中
                        p.store(fos,"");//  参数为输出流和注释 将设置后的属性从流中存入"count.ini"文件中
                        fis.close();
                        fos.close();
        }
}
回复 使用道具 举报
格式错误啊    限定了.ini  你上传的又是.jpg  格式错误吧
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马