Java IO流 07:IO+Properties的联合应用

一、IO+Properties的联合应用

  • IO+Properties的联合应用是一个非常好的设计理念:
    —— 以后经常改变的数据,可以单独写到一个文件中,使用程序动态获取。
    将来只需要修改这个文件中的内容,java代码不需要改动,不需要重新编译,服务器也不需要重启,就可以拿到动态的信息。
    • 类似于以上机制的这种文件被称为配置文件

      并且当配置文件中的内容格式是:
      key1=value
      key2=value
      的时候,我们把这种配置文件叫做属性配置文件

    • java规范中有要求:属性配置文件建议以.properties结尾。
      ——这种以.properties结尾的文件在java中被称为:属性配置文件
      其中Properties是专门存放属性配置文件内容的一个类。
      Java IO流 07:IO+Properties的联合应用_第1张图片
      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();
                      }
                  }
              }
          }
      }
      

你可能感兴趣的:(#,Java,IO,java,开发语言,后端)