Android 文件方式配置和读取(properties)方法

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);
    }

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值