欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Android加载配置文件的几种方法

程序员文章站 2022-04-27 19:44:47
...

Android 中有些配置文件需要在代码外面有一下几种:
一、放入了 app/src/main/assets文件中

		//加载配置文件
        Properties props = new Properties();
        InputStream inputStream = context.getAssets().open("config.properties");
        props.load(inputStream);
        String value = props.getProperty("create_a");

二、放入了 app/src/main/res/raw文件中

		//加载配置文件
        Properties props = new Properties();
        InputStream inputStream1 = context.getResources().openRawResource(R.raw.config);
        props.load(inputStream);
        String value = props.getProperty("create_a");