当前位置: 技术问答>java相关
tomcat上jsp的中文问题
来源: 互联网 发布时间:2015-01-20
本文导语: 我是菜鸟,请问:在tomcat上jsp的中文问题(如:接受表单中的中文为乱码,向文件中写入中文也为乱码等)如何解决,给20分。 | 把从表单得到的数据进行转换: String test= new String(request.getP...
我是菜鸟,请问:在tomcat上jsp的中文问题(如:接受表单中的中文为乱码,向文件中写入中文也为乱码等)如何解决,给20分。
|
把从表单得到的数据进行转换:
String test= new String(request.getParameter("test").getBytes("ISO8859_1"));
String test= new String(request.getParameter("test").getBytes("ISO8859_1"));