Android读取配置文件的问题
2016-12-23 本文已影响606人
踏雪鸿雁
注意:Android项目中的配置文件应放在assets或raw目录下,以assets为例:
方法一:
URL url = this.getClass().getResource("/assets/heavenpool-rmi.properties");
url.getPath();//获取配置文件的路径
InputStream is = this.getClass().getResourceAsStream("/assets/heavenpool-rmi.properties");
获取配置文件中的信息:
Paste_Image.png
方法二:
Context.getAssets().open("heavenpool-rmi.properties")