jboss4.0.3sp1的request的参数取值乱码,当使用get方式传递
如题,我在web.xml中已经加了估计大家都熟悉的charsetFilter,encoding=gb2312。
当参数是由form的post方式传的,中文正确,当使用get方式时就乱了。
------解决方案--------------------参数取出后转码
String abc = new String(form.getAbc().getBytes("8859_1"), "Shift_JIS");
------解决方案--------------------String abc = new String(form.getAbc().getBytes("8859_1"), "gb2312");