Properties
介绍
properties
- public class Properties
extends Hashtable<Object,Object> implements Map<k,v> - Properties类表示一组持久的属性。 Properties可以保存到流中或从流中加载。
- properties集合是一个唯一和IO流相结合的集合
- 可以使用properties集合中的方法store,把集合中的临时数据,持久化写入到硬盘中存储
- 可以使用properties集合中的方法load,把硬盘中保存的文件(键值对),读取到集合中使用*/
/*Object setProperty(String key, String value)
致电 Hashtable方法 put 。
String getProperty(String key)
使用此属性列表中指定的键搜索属性。
Set stringPropertyNames()
返回此属性列表中的一组键,其中键及其对应的值为字符串,包括默认属性列表中的不同键,如果尚未从主属性列表中找到相同名称的键。 相当于Map中keyset方法
代码块:
public class Demo01Properties {
public static void main(String[] args) throws Exception{
/*Properties ps=new Properties();
ps.setProperty("迪丽热巴1","171");
ps.setProperty("迪丽热巴2","172");
ps.setProperty("迪丽热巴3","173");
ps.setProperty("迪丽热巴4","174");
ps.setProperty("迪丽热巴5","175");
Set<String> set = ps.stringPropertyNames();//将key值存放在set中
for (String key:set
) {
System.out.println(key+"="+ps.getProperty(key));//调用getproperty方法获取对应的value值!
}*/
//cun();
load();
}
/*可以使用store方法将集合中的临时数据,持久化写道硬盘中存储!
void store(OutputStream out, String comments)
将此属性列表(键和元素对)写入此 Properties表中,以适合于使用 load(InputStream)方法加载到 Properties表中的格式输出流。
void store(Writer writer, String comments)
将此属性列表(键和元素对)写入此 Properties表中,以适合使用 load(Reader)方法的格式输出到输出字符流。
参数:
OutPutStream :字节输出流,不能写中文
Writer 字节输出流,可以写中文
String comments:注释,用来解释说明保存的文件是做什么的,不能使用中文,会产生乱码,默认是unicode编码
一般用null
使用步骤:
1.创建properties集合对象,添加数据
2.创建字节输出流/字节输出对象,构造方法中绑定要输出的目的地
3.使用Properties中的store 方法
4.释放资源
*/
public static void cun() throws Exception
{
Properties ps=new Properties();
ps.setProperty("迪丽热巴1","171");
ps.setProperty("迪丽热巴2","172");
ps.setProperty("迪丽热巴3","173");
ps.setProperty("迪丽热巴4","174");
ps.setProperty("迪丽热巴5","175");
FileWriter fw=new FileWriter("cn\\itcast\\IO\\write3.txt");
ps.store(fw,"save data!");
fw.close();
}
/*void load(InputStream inStream)
从输入字节流读取属性列表(键和元素对)。
void load(Reader reader)
以简单的线性格式从输入字符流读取属性列表(关键字和元素对)。
使用步骤
1.创建properties集合对象
2.使用properties集合对象的方法load读取保存键值对的文件
3.遍历properties集合
注意:
1.存储键值对的文件中,键与值的默认的链接符好可以使用=,空格(其它字符)
2存储键值对的文件中,可以使用#进行注释,被注释的键值对不会再被读取
3.存储键值对的文件中,键与值默认都是字符串,不用再加引号。
*/
public static void load() throws IOException {
Properties psl=new Properties();
FileReader fr=new FileReader("cn\\itcast\\IO\\write3.txt");
psl.load(fr);
Set<String> set = psl.stringPropertyNames();
for (String key :
set) {
System.out.println(key+"="+psl.getProperty(key));
}
fr.close();
}
}