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

get方式提交数据的中文乱码有关问题

2012-09-07 
get方式提交数据的中文乱码问题在使用netBeans开发和tomcat做服务器时解决get方式提交表单数据时的解决中

get方式提交数据的中文乱码问题

在使用netBeans开发和tomcat做服务器时解决get方式提交表单数据时的解决中文乱码的方法如下:

//a.jsp<form action="b.jsp">            <input type="text" name="username"/><input type="submit" value="提交"/></form>//b.jsp  <%String st=new String(request.getParameter("username").getBytes("ISO-8859-1"), "utf-8");%>

热点排行