还有就是我想问问 不说签到加技术分么 我都快连续签到20天了 怎么加分啊 先谢谢了复制代码
- public static void countTest() throws Exception {
- Properties prop = new Properties();
- // 文件操作 1.就好 File file = new File("D:\\info.txt"); 封装成对象 2.判断是否存在
- File file = new File("info.txt");
- if (!file.exists())
- file.createNewFile();
- FileInputStream fis = new FileInputStream(file);
- prop.load(fis);// 加载
- String value = prop.getProperty("count");
- int count = 0;
- if (value != null) {
- count = Integer.valueOf(value) + 1;
- if (count >= 3) {
- // 这来实现功能
- System.out.println("请去注册");
- return;
- }
- }
- prop.setProperty("count", String.valueOf(count));
- FileOutputStream fos = new FileOutputStream(file);
- prop.store(fos, "");// 这个方法是把数据覆盖info.txt的数据 第二个参数是注释
- fos.close();
- fis.close();
- }
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) | 黑马程序员IT技术论坛 X3.2 |