将来只需要修改这个文件中的内容,java代码不需要改动,不需要重新编译,服务器也不需要重启,就可以拿到动态的信息。
- 类似于以上机制的这种文件被称为
配置文件
并且当配置文件中的内容格式是:
key1=value
key2=value
的时候,我们把这种配置文件叫做属性配置文件
。- java规范中有要求:属性配置文件建议以
.properties
结尾。
——这种以.properties
结尾的文件在java中被称为:属性配置文件
。
其中Properties是专门存放属性配置文件内容的一个类。
public class IOPropertiesTest01 { public static void main(String[] args) { /* Properties是一个Map集合,key和value都是String类型 */ FileInputStream fis = null; try { fis = new FileInputStream("userinfo.properties"); Properties properties = new Properties(); properties.load(fis); System.out.println(properties.getProperty("username"));//chensiwen System.out.println(properties.getProperty("password"));//csw123456 } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } finally { if (fis != null) { try { fis.close(); } catch (IOException e) { e.printStackTrace(); } } } } }