09.File file = new File("count.ini");//关联配置文件内容如: time=xx
10.if(!file.exists())
11.file.createNewFile();
12.
13.FileInputStream fis = new FileInputStream(file);
14.
15.prop.load(fis);//把配置文件数据加载到该集合:Properties继承了Map集合,是一个容器,所以他里面的的数据都是以键值对的形式存在的
16.
17.
18.int count = 0;
19.String value = prop.getProperty("time");//"time"这个键从何而来?//该time是从count.ini读取到的,在此是以time为键,获取其对应的值
另外Properties的其他属性可以查阅API
|