黑马程序员技术交流社区
标题:
刚写的小代码
[打印本页]
作者:
途中ms前进
时间:
2015-5-31 21:49
标题:
刚写的小代码
/用于记录应用程序运行次数 如果使用次数已到那么给出注册提示
import java.io.*;
import java.util.*;
class PropertiesDemo5
{
public static void main(String[] args) throws Exception
{Properties pt=new Properties();
File f=new File("count.Properties");
if(!f.exists())
f.createNewFile();
FileInputStream fis=new FileInputStream(f);
pt.load(fis);
String value=pt.getProperty("time");
int count=0;
if(value!=null)
{count=Integer.parseInt(value);
if(count>=5)
{System.out.println("次数已到请交钱");
return;}
}
count++;
pt.setProperty("time",count+"");
FileOutputStream fos=new FileOutputStream(f);
pt.store(fos,"");
fos.close();
fis.close();
}
}
:loveliness:
作者:
探索者
时间:
2015-5-31 22:49
代码要加点注释比较好
作者:
1017161726
时间:
2015-5-31 22:59
貌似看懂了。。
作者:
下一页5
时间:
2015-6-1 00:21
导包都会了。大神
作者:
壹颗心只属于你
时间:
2015-6-6 10:30
不错不错。
作者:
王冲6060
时间:
2015-6-6 17:40
不错不错
作者:
wx_d9b6mRbI
时间:
2015-6-6 18:23
加点注释看着会更好
作者:
付欢
时间:
2015-6-6 22:18
楼主的提示简单粗暴啊
“次数已到请交钱”|
作者:
QQheima
时间:
2015-6-6 23:15
老板说了,注释的多少决定了你工资的多少,努力吧骚年~
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2