プロパティ(file.properties)ファイル値の読み込み
4811 ワード
属性ファイルの値fileを読み込む.properties:新規file.propertiesファイル、内容は以下の通りです.
テストクラスで作成
name=shp
age=18
sex=
テストクラスで作成
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"));
}
}