读取属性(file.properties)文件值
读取属性文件的值file.properties:
新建file.properties文件,内容如下:
name=shp
age=18
sex=男
【读取属性(file.properties)文件值】在测试类中编写
package com.vimochina.vimo.dji;
import com.vimochina.vimo.config.UrlProperties;
import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;
/**
* @Auther shp
* @data2020/6/1114:34
* @description
*/
public class InputPropertis {public static void main(String[] args) throws IOException {ClassLoader classLoader = UrlProperties.class.getClassLoader();
InputStream is = classLoader.getResourceAsStream("file.properties");
Properties properties = new Properties();
properties.load(is);
System.out.println(properties.getProperty("name"));
System.out.println(properties.getProperty("age"));
System.out.println(properties.getProperty("sex"));
}}
推荐阅读
- 第6.2章(设置属性)
- 7、前端--jQuery简介、基本选择器、基本筛选器、属性选择器、表单选择器、筛选器方法、节点操作、绑定事件
- ExcelPackage读取写入
- 缓存有关的配置和属性
- 狗趣
- Spring源码解析_属性赋值
- springboot中.yml文件的值无法读取的问题及解决
- HTML5新增选择器属性方法
- Arcgis根据经纬度批量提取属性值
- SpringBoot|SpringBoot 属性配置中获取值的方式