Java读取.properties配置文件

2018-06-18 01:24:50来源:未知 阅读 ()

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

1       配置文档的位置和内容

在src/main/resources下增加配置文档test.properties,文档编码格式为utf-8。

 

 

 

2       读取文档的几种方式

2.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.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);

 

标签:

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

上一篇:Java 故障安全异常处理

下一篇:Spring Boot实战:模板引擎