How does URIEncoding = 'UTF-8' work?

前端 未结 2 1526
时光取名叫无心
时光取名叫无心 2021-01-28 10:55

When I view the tomcat source code at http://grepcode.com/file/repo1.maven.org/maven2/org.apache.tomcat/tomcat-catalina/7.0.0/org/apache/catalina/connector/Request.java#Request.

2条回答
  •  情书的邮戳
    2021-01-28 11:25

    The URIEncoding parameter is what you're looking for. It sets the character encoding to be used when URI decoding the query string.

    You use it in server.xml as an attribute of the Connector entity.

    If successfully used it in the past.

提交回复
热议问题