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

springmvc前台传递到controller层的中文乱码解决方法

时间:2017-01-23 19:22:16      阅读:249      评论:0      收藏:0      [点我收藏+]

标签:ram   转码   bsp   res   ffffff   ogg   public   att   color   



   @RequestMapping("/judge")
    public String judgeLogger(@RequestParam String userName, @RequestParam String password, @RequestParam String sex, RedirectAttributes redirectAttributes) {
//    乱码解决方法
        try {
            String name = new String(userName.getBytes("iso-8859-1"), "UTF-8");
            String s = new String(sex.getBytes("iso-8859-1"), "utf-8");

//--------------------------------------------------------------------------------
if (name != null && password != null && s != null) { if (loggerService.judgeLogger(name)==1) { redirectAttributes.addFlashAttribute("userName",name); redirectAttributes.addFlashAttribute("password",password); redirectAttributes.addFlashAttribute("sex",s); return "redirect:/log.do"; } } } catch (UnsupportedEncodingException e) { e.printStackTrace(); return "404"; } return "404"; }

 

在传递过来的前台数据进行一次转码即可解决。但是我之前设置过request和response的编码,但是然并卵。

 


 

 

springmvc前台传递到controller层的中文乱码解决方法

标签:ram   转码   bsp   res   ffffff   ogg   public   att   color   

原文地址:http://www.cnblogs.com/dailinfu/p/6344680.html

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