美文网首页
request对象

request对象

作者: Mier911 | 来源:发表于2016-08-04 15:35 被阅读0次

request 接收中文参数时要设置编码格式为utf-8:

<%request.setCharacterEncoding("UTF-8");%>

<%=request.getParameter("username")%>

URL 在页面中直接传递参数中文参数会造成乱码的问题,并且无法解决

href="request.jsp?username=李四"

除非修改 Tomcat 配置文件:

在Tomcat 安装目录下的 conf/server.xml  ,添加 URIEncoding="utf-8"

<Connectorport="8080"protocol="HTTP/1.1"connectionTimeout="20000" redirectPort="8443" URIEncoding="utf-8"/>

(不能直接在Eclipse 项目列表里面修改 Servers下的 server.xml文件,修改无效)

相关文章

网友评论

      本文标题:request对象

      本文链接:https://www.haomeiwen.com/subject/mhgcsttx.html