json传输数据解决中文乱码问题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了json传输数据解决中文乱码问题相关的知识,希望对你有一定的参考价值。

1.Ajax在url带参数(中文):

   encodeURI(encodeURI(expireDesc))//设置编码

2.后台接收需要转码:

  URLDecoder.decode(expireDesc, "UTF-8") //将接收的参数转码

3.例子:
js Ajax:

function exchange(expireDesc){
            $.ajax({
             type: "post",  
             url:ctx+"/xxx.do?method=xxx&xxx="+  encodeURI(encodeURI(xxx)),
             dataType: "json",
             success: function(data){
                 xxxx=data.code;
             }
            })
            
        }

后台接收:

public JsonResult exchange(HttpServletRequest request,String expireDesc) {
                String expire="";
                try {
                     xxx = URLDecoder.decode(xxx, "UTF-8");//将接收的参数转码,用于解决中文乱码
                } catch (UnsupportedEncodingException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
            MngCodeEntity list = produceService.exchange(expire);
            JsonResult jsonResult = new JsonResult();
            jsonResult.setCode(list.getCodeVal());
            return jsonResult;
        }

 
























以上是关于json传输数据解决中文乱码问题的主要内容,如果未能解决你的问题,请参考以下文章

jquery.ajax传输到jsp的中文乱码问题解决

Python 3 与 Javascript escape 传输确保数据正确方法和中文乱码解决方案

各位高手帮我解决AJAX传输数据的中文乱码问题

json前后台传输,以及乱码中文问题探讨

ajax中中文乱码的问题

Json的@ResponseBody注解传输中文的乱码问题