JAVA中IO和properties联合运用
- IO + Properties的联合应用:
非常好的一个设计理念
以后经常改变的数据,可以单独写到一个文件当中,使用程序动态读取,
将来只需要修改这个文件的内容,java代码不需要改动,不需要重新编译,
服务器也不需要重启,就可以拿到动态的信息 - 类似于以上机制的这种文件被称为配置文件,
并且当配置文件中的内容格式是
key1=value
key2=value
的时候,我们把这种配置文件成为属性配置文件 - java规范中要求,属性配置文件建议以.properties结尾,但这不是必须的
public class IOProperties {
public static void main(String[] args) throws Exception{
FileReader reader = new FileReader("src\\io\\userinfo.properties");
Properties properties = new Properties();
properties.load(reader);
String value = properties.getProperty("name");
System.out.println(value);
}
}
我创建的userinfo.properties属性配置文件:
- .properties文件中以#编写注释
- key重复的话,value值会自动覆盖
- key和value之间最好不要有空格
- key和value之间可以用=号和: