Android 读取配置文件.properties

不啰嗦直接 上代码

Properties properties = new Properties();
try {
            InputStream in=context.getAssets().open("test.properties");
            properties.load(in);
            in.close();
}catch (IOException e){
  //  ...
    return;
}

String host = properties.getProperty("HOST");

properties 中添加  HOST =https://www.baidu.com

properties文件放在 assets文件夹中 OK完成

posted @ 2017-05-31 10:26  TeddyYan  阅读(3258)  评论(0编辑  收藏  举报