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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 葛奎 中级黑马   /  2012-11-1 14:29  /  1417 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

package io;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.Properties;
public class PropertyTimes {
public static void main(String[] args) {
  File file = new File("d:\\heimaio\\time.properties");
  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);
    Properties p = new Properties();
    p.load(fis);
//    获取times值并判断。判断配置文件中times键对应的值是否大于5,怎么在输出到 time.properties文件中times对应的值总是0。
//帮忙解决下
    String value = p.getProperty("times");
    System.out.println(value);
    int times=0;
    if(value==null){
     p.setProperty("times", times+"");
    }else{
     times =Integer.parseInt(value);
     if(times>=5){
      System.out.println("超了");
      return;
     }
     times++;
     p.setProperty("times", times+"");
    }
    p.store(fos, "次数");
   
  } catch (FileNotFoundException e) {
   e.printStackTrace();
  } catch (IOException e) {
   e.printStackTrace();
  }
}
}

评分

参与人数 1技术分 +1 收起 理由
冯海霞 + 1

查看全部评分

1 个回复

倒序浏览
程序从这开始
String value = p.getProperty("times");
    System.out.println(value);
    int times=0;
    if(value==null){                                     // 判断value == null;首先开始条件肯定成立,这改写成   if(value!=null)
                                                                                                                                                           {
                                                                                                                                                              count = Integer.parseInt(value);
                                                                                                                                                            }
     p.setProperty("times", times+"");        //这句将times和0写入
    }else{                                                   
     times =Integer.parseInt(value);          //这句话就不会执行的,也就是你将times没有转换成int型的数,将else去掉
    if(times>=5){

      System.out.println("超了");
      return;
     }
     times++;                                        //这是字符串++也不会改变成数字的,对字符串++不起作用,所以一直是0.
     p.setProperty("times", times+"");
    }
    p.store(fos, "次数");
   
  } catch (FileNotFoundException e) {
   e.printStackTrace();
  } catch (IOException e) {
   e.printStackTrace();
  }
}
}

评分

参与人数 1技术分 +1 收起 理由
冯海霞 + 1

查看全部评分

回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马