android 读取配置文件

时间:2024-05-31 14:38:02
/**
 * 读取配置文件
 * @param context 配置文件名字  包名key
 * @return
 */
private String getPackageName(Context context,String configName,String packageNameKey){
    String result = "";
    Properties properties = new Properties();
    InputStream is = null; //这两个都是获得文件的流文件
    try {
        is = context.getAssets().open(configName);
        properties.load(is);//is是通过上面获得的输入流
        result = properties.getProperty(packageNameKey);//通过key获得相应的值
        Log.i("kaijiguangbo Config",result);
    } catch (IOException e) {
        e.printStackTrace();
        Log.i("kaijiguangbo Conf error","读取不到配置文件");
    }
    return result;
}

配置文件:注意配置文件的后缀名,在ec中是需要带上的,as并不需要

appPackageName=com.other.zophar.otherapp

android 读取配置文件