package joeho.net.csdn.blog;
import java.util.*;
import java.io.*;
public class PropertiesFile {
/**
* Method main
* 可以用来设置:)破解 记录运行次数的共享软件
*
* @param args
*
*/
public static void main(String[] args) {
Properties settings = new Properties();
try{
settings.load(new FileInputStream("count.txt"));
}catch(Exception e)
{
settings.setProperty("count",String.valueOf(0));
}
int c = new Integer(settings.getProperty("count")).intValue()+1;
System.out.println("Properties 文件被执行:"+c+"次了");
settings.setProperty("count",new Integer(c).toString());
try{
settings.store(new FileOutputStream("count.txt"),"program is runing:");
}catch(Exception e){
e.printStackTrace();
}
}
}
本文介绍了一个简单的Java程序,该程序演示了如何使用Java的Properties类来读取和更新属性文件。通过这个示例,读者可以了解到如何加载现有的属性文件、修改其内容并保存回文件。
707

被折叠的 条评论
为什么被折叠?



