美文网首页
Java读取配置文件

Java读取配置文件

作者: 好像身体被掏空 | 来源:发表于2018-08-16 14:15 被阅读0次

    读取 com.test 包下的bean.properties

    1.ResourceBundle

        private static ResourceBundle bundle = ResourceBundle.getBundle("com.test.bean");//加载配置文件
        String testStr = bundle.getString("test");//获取键为test的值
    
    特点:

    a. 只能用于读取properties文件
    b. 只能用于读取,不能用于写入
    c. 只能读取类路径下面的,其他地方的读取不到
    d. 方法参数的写法是按照包名.类名的方式写的,不需要扩展名

    2.Properties

        Properties props = new Properties();
        InputStream in = Test.class.getClassLoder().getResourceAsStream("bean.properties");
        props.load(in);
    

    相关文章

      网友评论

          本文标题:Java读取配置文件

          本文链接:https://www.haomeiwen.com/subject/loanbftx.html