一、IO与Propertie
二、举例说明
三、proporties配置文件
---------------------------------------分割线:正文--------------------------------------------------------
一、IO与Propertie
1、IO流:
文件的读与写
2、properties:
是一个Map集合,key与value都是String类型
properties建立的文件,是key=value的数据格式,如:
username=admin
password=123
二、举例说明:
加载并打印配置文件内信息
1 package JAVAADVANCE; 2 import java.io.FileReader; 3 import java.io.IOException; 4 import java.util.Properties; 5 6 public class TestAdvance36TestIoProperties01 { 7 public static void main(String[] args) throws IOException { 8 //新建一个输入对象流 9 FileReader reader = new FileReader("userinfo"); 10 //新建一个Map集合 11 Properties pro = new Properties(); 12 //调用Properties对象的load方法将文件中的数据加载到集合中 13 pro.load(reader); //文件中的数据沿着管道加载到Map集合中,=左边为key,右边为value 14 //通过key获取value 15 String username = pro.getProperty("username"); 16 System.out.println(username); 17 String password = pro.getProperty("password"); 18 System.out.println(password); 19 20 } 21 }