A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始



        @Test
        // 读取配置文件方式一:ResourceBundle
        public void readMethod1() {
                ResourceBundle rb = ResourceBundle.getBundle("jdbc");
                String driver = rb.getString("driver");
                String url = rb.getString("url");
                String user = rb.getString("user");
                String password = rb.getString("password");

                System.out.println(driver + "\t" + url + "\t" + user + "\t" + password);
        }

        @Test
        // 读取配置文件方式二:用类加载器加载
        public void readMethod2() throws IOException {
                InputStream in = ReadProperties.class.getClassLoader()
                                .getResourceAsStream("jdbc.properties");
                Properties p = new Properties();
                p.load(in);

                String driver = p.getProperty("driver");
                String url = p.getProperty("url");
                String user = p.getProperty("user");
                String password = p.getProperty("password");

                System.out.println(driver + "\t" + url + "\t" + user + "\t" + password);
        }

}

1 个回复

倒序浏览
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马