解决URL传递中文参数(比如hello.action?msg=哈哈之类)出现乱码的问题

解决URL传递中文参数(比如hello.action?msg=哈哈之类)出现乱码的问题
修改 tomcat/conf/server.xml
<Connector acceptCount='100' connectionTimeout='20000' debug='0'
      disableUploadTimeout='true' enableLookups='false'
      maxSpareThreads='75' maxThreads='150' minSpareThreads='25'
      port='8080' redirectPort='8443' URIEncoding=' GBK'/>


加上 URIEncoding='GBK' 即可。

你可能感兴趣的:(解决URL传递中文参数(比如hello.action?msg=哈哈之类)出现乱码的问题)