获取一个应用程序运行的次数,如果超过5次,给出使用次数已到请注册的提示,并不要再运行程序
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.Properties;
public class Test5
{
public static void main(String[] args) throws Exception
{
getAppCount();
}
private static void getAppCount() throws Exception
{
File file = new File("C:\Users\Administrator\Desktop\测试文件夹",");
if(!ists())
FileInputStream fis = new FileInputStream(file);
Properties pro = new Properties();
pro.load(fis);
String value = Property("name");
int count = 0;
if(value!=null)
{
count = Integer.parseInt(value);
if(count>=5)
{
throw new RuntimeException("使用次数已到");
}
}
count++;
pro.setProperty("name", count+"");
FileOutputStream fos = new FileOutputStream(file);
pro.store(fos, "");
fos.close();
fis.close();
}
}
本文同步分享在 博客“早起的年轻人”(CSDN)。
如有侵权,请联系 support@oschina 删除。
本文参与“OSC源创计划”,欢迎正在阅读的你也加入,一起分享。
本文发布于:2024-01-29 13:58:21,感谢您对本站的认可!
本文链接:https://www.4u4v.net/it/170650790415771.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
留言与评论(共有 0 条评论) |