码迷,mamicode.com
首页 > 移动开发 > 详细

JAVA android 获取assets文件夹中的properties文件 并从中获取数据

时间:2018-03-01 17:30:51      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:技术分享   inpu   取数   bubuko   取数据   img   turn   try   ima   

class PropertiesUtils {
    
    private static Properties properties = null;
    
    private static void readProperties() {
        try {
            InputStream in = PropertiesUtils.class.getResourceAsStream("/assets/sdk_param_config.properties");
            properties = new Properties();
            properties.load(in);
        } catch (IOException e) {
            e.printStackTrace();
        } catch (NullPointerException e) {
            Log.e("PropertiesUtils", "get nothing");
            e.printStackTrace();
        }
    }
    
    public static Properties getProperties() {
        if (properties == null) {
            readProperties();
        }
        return properties;
    }
}

文件存放于主程序里

技术分享图片

技术分享图片

 

获取数据

 

String a = properties.getProperty("a");

 

JAVA android 获取assets文件夹中的properties文件 并从中获取数据

标签:技术分享   inpu   取数   bubuko   取数据   img   turn   try   ima   

原文地址:https://www.cnblogs.com/PandaQ/p/8488424.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!