Properties类

2022/9/12 23:26:04

本文主要是介绍Properties类,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

Properties类

Properties 类是 Hashtable 的子类,该对象用于处理属性文件

//Properties:常用来处理配置文件。key和value都是String类型
    public static void main(String[] args) throws IOException {
        FileInputStream fileInputStream = null;
        try {   //快捷键ctrl alt T
            Properties pros = new Properties();
            fileInputStream = new FileInputStream("jdbc.properties");
            pros.load(fileInputStream);//加载流对应的文件

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

            System.out.println(name+"====="+password);
        } catch (IOException e) {
            e.printStackTrace();
        }finally {
            if (fileInputStream!=null){
                try {
                    fileInputStream.close();
                }catch (IOException e){
                    e.printStackTrace();
                }
            }
        }
    }

jdbc.properties文件:

name=Tom
password=abc123


这篇关于Properties类的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程