1、这是Jsp传参连接:
<td><a href="<%=path %>/objectAction.do?command=checkByName&name=<%=name %>"><%=name %></a></td>2、这是要传到的Action类 :
public ActionForward checkByName(ActionMapping mapping,ActionForm form,
HttpServletRequest request,HttpServletResponse response)throws Exception{String name = new String(request.getParameter("name").getBytes("ISO-8859-1"), "utf-8");             …………………………………………
}
3、Jsp页面我用的字符编码集为“utf-8”,过滤器里也是“utf-8”输出语句,如name=“李家家” ,结果:输出语句为乱码:“李家?”