Properties
在Android中,比起用纯字符串读写并自行解析,或是用xml来保存配置,
Properties显得更简单和直观,因为自行解析需要大量代码,而xml的操作又远不及Properties方便
update.url=http://baidi...
public static String getUpgradeUrl() {
Properties prop = new Properties();
return prop.getProperty("update.url");
}
时间: 2024-10-30 11:27:07