当前位置: 技术问答>java相关
JSP中URL的乱码问题!(传递中文)
来源: 互联网 发布时间:2015-10-21
本文导语: 用如下形式传递中文参数 2.jsp?tt=谁是谁非 在1.jsp中用下面获得参数 String tt=request.getParameter("tt"); 结果是乱码,用ISO8859_1,GB2312转换都不行. 谁有良方?请指教!!! | 又是这个问题,给分吧! 传...
用如下形式传递中文参数
2.jsp?tt=谁是谁非
在1.jsp中用下面获得参数
String tt=request.getParameter("tt");
结果是乱码,用ISO8859_1,GB2312转换都不行.
谁有良方?请指教!!!
2.jsp?tt=谁是谁非
在1.jsp中用下面获得参数
String tt=request.getParameter("tt");
结果是乱码,用ISO8859_1,GB2312转换都不行.
谁有良方?请指教!!!
|
又是这个问题,给分吧!
传值:
click
**********************
取值:
String tt = new String(request.getParameter("tt").getBytes("ISO8859_1"));
传值:
click
**********************
取值:
String tt = new String(request.getParameter("tt").getBytes("ISO8859_1"));