读取properties文件的Android库:android-properties

jopen 10年前

这是一个Android库提供一种简单的方式来读取存储在assets文件夹中的properties文件。你只需要扩展AssetsProperties并使用@Property注释来调用自动属性映射。

示例:

assets/config.properties

int_value=23  flag=true  tax=2.3f

Config.java

public class Config extends AssetsProperties {      @Property("int_value") int intValue;    @Property boolean flag;    @Property float tax;      public Config(Context context) { super(context); }  }

读取properties文件的Android库:android-properties

项目主页:http://www.open-open.com/lib/view/home/1410852868601