首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Java Web开发 >

汉语传参乱码

2013-12-29 
中文传参乱码做搜索的时候。传递过去的中文乱码处理搜索的页面:%@ page contentTypetext/html charset

中文传参乱码
做搜索的时候。传递过去的中文乱码
处理搜索的页面:
<%@ page contentType="text/html; charset=GBK"%>
 sql.append(" and ntitle like '%").append(new String (title.getBytes("ISO8859_1"),"GBK")).append("%'");


但是在点下一页的时候,乱码了
<a href="newsmore2.jsp?pageNo=<%=ssTmp%>&title=<%=title%>&newsclass_id=<%=ntid%>&news_date=<%= todate %>&controlattibute=<%=controlattibute%>">前页</a>
[解决办法]
用字符过滤器
[解决办法]
ISO8859_1,应该是iso-8859-1吧?
[解决办法]
tomcat默认是iso8859-1你转一下编码

热点排行