下面给大家说说Properties的用法
代码如下:
public static String getPropertiesURL(Context c, String s) {
String url = null;
Properties properties = new Properties();
try {
properties.load(c.getAssets().open("property.properties"));
url = properties.getProperty(s);
} catch (Exception e) {
e.printStackTrace();
}
return url;
}
这里我把配置文件放在了assets文件夹下 大家也可以放在raw下 还可以跟我们Java文件同级这样我们就可以读到Properties值了
配置文件的写法很简单:
例如 url=www.jb51.net就行注释用#号 您可能感兴趣的文章:Android local.properties 文件读取实例详解Android读取properties配置文件的实例详解