集合10、集合_Map接口_Properties的使用

Properties的使用

public static void main(String[] args) {

    FileInputStream fis = null;
    try {
        Properties props = new Properties();

        fis = new FileInputStream("jdbc.properties");
        props.load(fis);    //加载流对应的文件

        String name = props.getProperty("name");
        String password = props.getProperty("password");

        System.out.println("name = " + name + ",password = " + password);
    } catch (IOException e) {
        e.printStackTrace();
    } finally {
        if (fis != null) {
            try {
                fis.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }
}
上一篇:字节输入输出流综合练习


下一篇:IO流复制图片