当前位置: 技术问答>java相关
页面提交时产生的乱码问题(加急!!!)
来源: 互联网 发布时间:2014-12-22
本文导语: 我在JSP页面上读取文本框的汉字,传过来的全都是乱码。 我已经加上了: 请问各位高手如何解决? | 在Windows 2000 Server(sp1)下 -- String type=(request.getCharacterEncoding()==null)?"8859_1":request.getCharacterE...
我在JSP页面上读取文本框的汉字,传过来的全都是乱码。
我已经加上了:
请问各位高手如何解决?
我已经加上了:
请问各位高手如何解决?
|
在Windows 2000 Server(sp1)下
--
String type=(request.getCharacterEncoding()==null)?"8859_1":request.getCharacterEncoding();
out.println(new String(request.getParameter("sample").getBytes(type),"GB2312"));
大概是这样的吧 ... 我还是觉得应该先判断操作系统什么的 :(
--
String type=(request.getCharacterEncoding()==null)?"8859_1":request.getCharacterEncoding();
out.println(new String(request.getParameter("sample").getBytes(type),"GB2312"));
大概是这样的吧 ... 我还是觉得应该先判断操作系统什么的 :(
|
把GB2312换成8859_1再看看?