session.getAttribute乱码

 

servlet:request.getSession().setAttribute("chosencity", city);放入session

JSP: String city=(String)session.getAttribute("chosencity");获取

发现JSP获取city是乱码,后续数据库查找结果是空,报错NULLpointer

解决方法:过滤器设置为UTF-8(GBK也不行)

你可能感兴趣的:(session.getAttribute乱码)