首页 > 其他 > 详细

处理postman传参中文乱码问题

时间:2020-06-05 19:40:24      阅读:390      评论:0      收藏:0      [点我收藏+]
private Map<String, Object> getParam(HttpServletRequest request){
        Map<String, String[]> map =  request.getParameterMap();
        Map<String, Object> requestMap = new HashMap();
        for(Map.Entry<String, String[]> entry:map.entrySet()){
            String s = entry.getValue()[0];
            String s1 = null;
            try {
                s1 = new String(s.getBytes("ISO-8859-1"), "UTF-8");
            } catch (UnsupportedEncodingException e) {
                LOGGER.warn("key为{}的参数转码失败,详情:{}",entry.getKey(),e);
            }
            entry.getValue()[0] = s1;
            requestMap.put(entry.getKey(), entry.getValue());
        }
        return requestMap;
    }

 

处理postman传参中文乱码问题

原文:https://www.cnblogs.com/mmh760/p/13051063.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!