Android 从properties配置文件读取数据

Android 从properties配置文件读取数据

 

1、Android工程文件项目里面的assets下新建一个.properties配置文件,命名为value.properties;

2、在value.properties里面写入数据,等号前面是id(string),后面是value值(string),如:

1=1

2=2

3=3

4=4

·······

3、(记得配置文件一定要放在assets下)创建流InputStream用来打开配置文件,load来加载

Properties prop = new Properties();

InputStream in = getApplicationContext().getAssets().open("value.properties");

prop.load( new InputStreamReader(in,"utf-8"));

源码:

//读取properties配置文件
try { 
    InputStream in = getApplicationContext().getAssets().open("value.properties");         //打开assets目录下的config.properties文件 
    prop.load( new InputStreamReader(in,"utf-8")); 
					
   } catch (Exception e1) { 
        e1.printStackTrace(); 
   }
        prop.getProperty("1");//根据ID号获取值

 

你可能感兴趣的:(Android)