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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© ς高眼光の目标 中级黑马   /  2014-4-8 04:47  /  629 人查看  /  2 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

  1. import java.io.*;
  2. import java.util.*;
  3. class  PropertiesDemo
  4. {
  5.         public static void main(String[] args) throws IOException
  6.         {
  7.                 Properties prop = new Properties();
  8.                 File file  = new File("F:\\count.ini");
  9.                         if(!file.exists())
  10.                                 file.createNewFile();
  11.                 FileInputStream fis = new FileInputStream(file);
  12.                 prop.load(fis);
  13.                 String value =prop.getProperty("time");
  14.                 int count = 0;
  15.                 if(value!=null)
  16.                 {
  17.                         count=Integer.parseInt(value);
  18.                                 if(count>=5)
  19.                         {System.out.println("给钱");
  20.                                         return ;}
  21.                        
  22.                 }
  23.                         count++;
  24.                         prop.setProperty("time",count+"");//为什么这句话可以打印键值对,不懂 求解析
  25.                         FileOutputStream fos = new FileOutputStream(file);
  26.                         prop.store(fos," ");
  27.                         fis.close();
  28.                         fos.close();

  29.         }
  30. }
复制代码

帮忙

2 个回复

倒序浏览
这里是把数据写入到文件中,不是打印
回复 使用道具 举报
请楼主认真看完毕老师视频.视频里面说的很清楚
回复 使用道具 举报 1 0
您需要登录后才可以回帖 登录 | 加入黑马