JAVA读取.properties文件的几种方式:

JAVA读取.properties文件的几种方式:

  • 我的项目结构:
    在这里插入图片描述

  • 配置文件的内容:
    在这里插入图片描述

  • 方式一:

    通过 ResourceBundle.getBundle() 静态方法来获取

    特点:这种方式来获取properties属性文件不需要加.properties后缀名,只需要文件名即可

    System.out.println("方式一:");
    ResourceBundle bundle = ResourceBundle.getBundle("cdu/mc/jdbc/test");
    String username = bundle.getString("username");
    String password = bundle.getString("password");
    System.out.println(username + "-->" + password);
    
    //输出:
    方式一:
    root-->123456
    
  • 方式二:

    通过PropertyResourceBundle包装文件输入流

    特点:可以读取任意路径下的配置文件

    		System.out.println("方式二:");
            FileInputStream fileInputStream = null;
            try {
                fileInputStream = new FileInputStream("F:\\idea_project\\qianfeng\\jdbc\\src\\cdu\\mc\\jdbc\\test.properties");
                PropertyResourceBundle propertyResourceBundle = new PropertyResourceBundle(fileInputStream);
                String username1 = propertyResourceBundle.getString("username");
                String password1 = propertyResourceBundle.getString("password");
                System.out.println(username1 + "-->" + password1);
            } catch (FileNotFoundException e) {
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();
            }finally {
                try {
                    fileInputStream.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
    
    //输出:
    方式二:
    root-->123456
    
  • 方式三:

    通过Properties类的load()方法读取输入流

    特点:可以读取任意路径下的配置文件

    		System.out.println("方式三:");
            FileInputStream fileInputStream1 = null;
            try {
                fileInputStream1 = new FileInputStream("F:\\idea_project\\qianfeng\\jdbc\\src\\cdu\\mc\\jdbc\\test.properties");
                Properties properties = new Properties();
                properties.load(fileInputStream1);
                String username1 = properties.getProperty("username");
                String password1 = properties.getProperty("password");
                System.out.println(username1 + "-->" + password1);
            } catch (FileNotFoundException e) {
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();
            } finally {
                try {
                    fileInputStream1.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
    
    //输出:
    方式三:
    root-->123456
    
  • 方式四:

    通过classloader

    注意:该方式只能读取类路径下(src下)的配置文件

    		System.out.println("方式四:");
            InputStream resourceAsStream = PropertiesTest.class.getClassLoader().getResourceAsStream("cdu/mc/jdbc/test.properties");
            Properties properties = new Properties();
            try {
                properties.load(resourceAsStream);
                String username1 = properties.getProperty("username");
                String password1 = properties.getProperty("password");
                System.out.println(username1 + "-->" + password1);
            } catch (IOException e) {
                e.printStackTrace();
            }
    
    
    
    
    
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Spring Boot读取application.properties的值的方式有多种方法。一种常用的方式是通过使用@Value注解来注入属性值。可以在需要使用属性值的字段、方法的参数、方法的返回值上添加@Value注解,并指定要注入的属性的键名。例如,可以使用@Value("${spring.rabbitmq.host}")来注入application.properties文件中的spring.rabbitmq.host属性的值。这样,在程序运行时,Spring Boot会自动读取属性文件中的值,并将其注入到相应的位置。 另一种方式是使用PropertiesLoaderUtils类来读取属性文件的值。首先,需要导入java.util.Properties和org.springframework.core.io.support.PropertiesLoaderUtils类。然后,可以使用PropertiesLoaderUtils的loadProperties方法来加载属性文件,然后使用getProperty方法获取具体的属性值。例如,可以使用Properties properties = PropertiesLoaderUtils.loadProperties(new ClassPathResource("application.properties"))来加载application.properties文件,然后使用properties.getProperty("spring.rabbitmq.host")来获取spring.rabbitmq.host属性的值。 总结起来,Spring Boot提供了多种方式读取application.properties文件的值,可以根据具体的需求选择适合的方式来获取属性值。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* [Spring Boot中配置文件application.properties使用](https://download.csdn.net/download/weixin_38672800/12765190)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 33.333333333333336%"] - *2* [SpringBoot获得application.properties中数据的几种方式](https://blog.csdn.net/m0_67393686/article/details/124421983)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 33.333333333333336%"] - *3* [SpringBoot读取application.properties配置文件](https://blog.csdn.net/watson2017/article/details/124732267)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 33.333333333333336%"] [ .reference_list ]

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值