码迷,mamicode.com
首页 > 编程语言 > 详细

javaE中获取项目properties文件中的常量数据

时间:2021-05-24 04:41:09      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:失败   配置   nbsp   ram   stream   param   use   catch   rop   

xiangmu\ app\ src\ main\ resources

fileUpload.resources文件
upload.userId = -1
upload.srcSystem = 131452021
upload.token = vfZQIDAQAB
upload.businessId = 111

 

 

public class UploadUtil {

    private static Map<String, Object> uploadParamsMap = new HashMap();static {
        Properties props = new Properties();
        StringBuffer whiteList = new StringBuffer();
        try {
            //读取上传配置文件
            ClassPathResource classPathResource = new ClassPathResource("/fileUpload.properties");
            InputStream in = classPathResource.getInputStream();
            InputStreamReader ins = new InputStreamReader(in, "UTF-8");
            props.load(ins);
            in.close();
            ins.close();
        } catch (IOException e) {
            e.printStackTrace();
            //logger.info("读取配置文件 fileUpload.properties 失败,格式不正确!");
        }
        Iterator<Map.Entry<Object, Object>> it = props.entrySet().iterator();
        while (it.hasNext()) {
            Map.Entry<Object, Object> entry = it.next();
            String key = entry.getKey() == null ? "" : entry.getKey().toString();
            String value = entry.getValue() == null ? "" : entry.getValue().toString();
            if (StringUtils.isNotBlank(key)) {
                //获取上传参数
                if (key.startsWith("upload") && key.indexOf(".") != -1) {
                    String[] keys = key.split("\\.");
                    if (keys.length >= 2) {
                        uploadParamsMap.put(keys[1], value);

                    }
                }
                
            }
        }

    }
}

 

javaE中获取项目properties文件中的常量数据

标签:失败   配置   nbsp   ram   stream   param   use   catch   rop   

原文地址:https://www.cnblogs.com/zuiniub/p/14752219.html

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