黑马程序员技术交流社区

标题: 程序使用次数计时器 [打印本页]

作者: 奋发吧小白    时间: 2014-11-5 14:15
标题: 程序使用次数计时器
  1. package IO流练习;
  2. import java.io.*;
  3. import java.util.*;
  4. public class 计数器 {
  5.         public static void main(String[] args) throws Exception{
  6.                 useCount();
  7.         }
  8.         public static void useCount() throws Exception
  9.         {
  10.                 //把目标文件封装成对象
  11.                 File file = new File("D:\\pz.in");
  12.                 if(!file.exists())
  13.                 {
  14.                         file.createNewFile();
  15.                 }
  16.                 //定义一个计数器
  17.                 int count = 0;
  18.                 Properties prop = new Properties();
  19.                 BufferedInputStream bis = new BufferedInputStream(
  20.                                 new FileInputStream(file));
  21.                 prop.load(bis);
  22.                 String value = prop.getProperty("time");
  23.                 if(value!=null)
  24.                 {
  25.                         count  = Integer.parseInt(value);
  26.                         if(count>=3)
  27.                         {
  28.                                 System.out.println("你的使用次数已到,请注册!");
  29.                                 return ;
  30.                         }
  31.                 }
  32.                 count++;
  33.                 prop.setProperty("time",count+"");
  34.                 BufferedOutputStream bos = new BufferedOutputStream(
  35.                                 new FileOutputStream(file));
  36.                 prop.store(bos, "comments");
  37.                 bis.close();
  38.                 bos.close();
  39.                
  40.         }
  41. }
复制代码









欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2