Java读取.properties配置文件

2019-08-16 09:18:51来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

Java读取.properties配置文件

1.通过PropertiesLoaderUtils类来读取

import org.springframework.core.io.support.PropertiesLoaderUtils;

Properties properties = PropertiesLoaderUtils.loadAllProperties("test.properties");
String test = properties.getProperty("test");
System.out.println("properties.test:"+test);

 

2.通过 java.util.ResourceBundle 类来读取

 

//不需要加.properties后缀名,只需要文件名即可
//test. properties配置文件在com.test.config下面,则wei com/test/config/test
ResourceBundle resource = ResourceBundle.getBundle("test");
String test = resource.getString("test");
System.out.println("resource.test:"+test);

 

 


原文链接:https://www.cnblogs.com/yysbolg/p/11095143.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:邮件hMailServer +Foxmail 安装使用教程

下一篇:Spring Boot整合Redis