玩龙天子 发表于 2017-1-22 07:08:23

tomcat地址栏传中文

tomcat做web服务器时,通过地址栏传中文参数时,为防止浏览器上的为乱码  在服务器server.xml中配置对应的端口中配置编码方式即可.例如:
  <Connector port="8080"
               maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
               enableLookups="false" redirectPort="8443" acceptCount="100"
               debug="0" connectionTimeout="20000"
               disableUploadTimeout="true"  useBodyEncodingForURI="true" URIEncoding="UTF-8"/>
  中加入useBodyEncodingForURI="true" URIEncoding="UTF-8"就可以了.
 
页: [1]
查看完整版本: tomcat地址栏传中文