1.配置properties文件
先创建properties文件,规范存放在assets文件夹下,文件名随便起
新建完,文件结构是这样的
properties文件内容:
格式:key=value
user=admin
password=123456
2 . 获取properties文件方法
public class PropertiesUtil {
private static Properties properties;
static {
properties = new Properties();
try {
//方法一:通过activity中的context攻取setting.properties的FileInputStream
// 注意这地方的参数appConfig在eclipse中应该是appConfig.properties才对,但在studio中不用写后缀
InputStream is = BaseApplication.getIns().getAssets().open("appConfig");
//方法二:通过class获取setting.properties的FileInputStream
//这种方法无效,可能是路径问题,大家有思路可以留言
//InputStream is = PropertiesUtil.class.getResourceAsStream("/assets/appConfig.properties");
properties.load(is);
} catch (Exception e) {
e.printStackTrace();
}
}
public static String getValue (String key){
return properties.getProperty(key);
}