java基础50 配置文件类(Properties)

1、 配置文件类Properties的概念

主要生产配置文件与读取配置文件的信息

2、Properties要注意的细节

1.如果配置文件一旦使用了中文,那么在使用store方法生产的配置文件额时候字符流解决,如果使用字节流生产的配置文件的话,默认使用的编码是iso8895-1码表经行编码存储,这个时候会出现乱码.
    2.如果Properties中内容发生了改变,一定要重新使用Properties生成配置文件,否则配置文件不会发生改变.

3、实例

 package com.dhb.file;

 import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.util.Map.Entry;
import java.util.Properties;
import java.util.Set; /**
* @author DSHORE / 2018-7-18
*
*/
public class Demo24 {
public static void main(String[] args) throws Exception {
//createProperties();
readProperties();
}
//读取配置文件的信息
public static void readProperties() throws Exception, IOException{
//创建Properties对象
Properties properties=new Properties();
//加载配置文件信息到Properties里面
properties.load(new FileReader("F:\\person.properties"));
//遍历
/*Set<Entry<Object,Object>> entrys=properties.entrySet();
for (Entry<Object, Object> entry : entrys) {
System.out.println("键:"+entry.getKey()+",值:"+entry.getValue());
//修改密码
//把修改后的properties在生成一个配置文件
properties.setProperty("李四","001");
properties.store(new FileWriter("F:\\person.properties"), "This is QQ account and password properties");
}*/
//修改密码
//把修改后的properties在生成一个配置文件
properties.setProperty("李四","");
properties.store(new FileWriter("F:\\person.properties"), "This is QQ account and password properties");
}
//创建配置文件
public static void createProperties() throws FileNotFoundException, IOException{
//创建一个配置文件
Properties properties=new Properties();
properties.setProperty("张三", "");
properties.setProperty("李四", "");
properties.setProperty("王五","");
//遍历Properties
/*Set<Entry<Object,Object>> entrys=properties.entrySet();
for (Entry<Object, Object> entry : entrys) {
System.out.println("键:"+entry.getKey()+",值:"+entry.getValue());
}*/ //使用Properties生产配置文件.
//properties.store(new FileOutputStream("F:\\person.properties"), "hehe");//第一个参数是一个输出流对象,第二参数是描述这个配置文件的信息
properties.store(new FileWriter("F:\\person.properties"), "This is QQ account and password properties");
}
}

运行结果图

java基础50 配置文件类(Properties)

java基础50 配置文件类(Properties)

原创作者:DSHORE

作者主页:http://www.cnblogs.com/dshore123/

原文出自:https://www.cnblogs.com/dshore123/p/9328488.html

欢迎转载,转载务必说明出处。(如果本文对您有帮助,可以点击一下右下角的 推荐,或评论,谢谢!

上一篇:Spring boot 配置文件详解 (properties 和yml )


下一篇:Java 学习笔记之读取jdbc.propertyes配置参数