获取请求参数乱码的问题
通用的解决方案
第一种方式:
String userName = request.getParameter("userName") ; byte[] bytes = userName.getBytes("iso8859-1"); userName = new String(bytes , "UTF-8") ; System.out.println(request.getMethod()+userName);
第二种方式:
request.setCharacterEncoding("UTF-8") ; String userName = request.getParameter("userName") ; System.out.println(userName);
POST请求的乱码
最后,关注【码上加油站】微信公众号后,有疑惑有问题想加油的小伙伴可以码上加入社群,让我们一起码上加油吧!!!