Solution to garbled Chinese parameters in java
[Method 1] Transfer when the backend receives parameters Code
String fileName = new String (fileName.getBytes("ISO8859-1"),"utf-8");
[Method 2] Modify server.xml in the tomcat installation directory (recommended)
<!-- 添加:URIEncoding="UTF-8" --> <Connector port="8080" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" URIEncoding="UTF-8"/>
Recommended learning: Java video tutorial
The above is the detailed content of How to solve the garbled Chinese parameters in Java?. For more information, please follow other related articles on the PHP Chinese website!