Properties集合类

痞子三分冷 提交于 2019-11-27 07:28:39
Properties集合类的练习
    Properties中存储的都是键值对,用=连接
 public static void main(String[] args) throws IOException {
        Properties pro = new Properties();

        //获取src路径下文件的相对路径
        ClassLoader classLoader = PropertiesDemo.class.getClassLoader();
        URL resource = classLoader.getResource("jdbc.properties");
        //得到的是一个对象
        String path = resource.getPath();
        FileReader fr = new FileReader(path);

        //加载文件
        pro.load(fr);
        //获取数据
        String url = pro.getProperty("url");
        String user = pro.getProperty("user");
        String password = pro.getProperty("password");
        String driver = pro.getProperty("driver");

        System.out.println(url);
        System.out.println(user);
        System.out.println(password);
        System.out.println(driver);

        fr.close();
    }
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!