Home  >  Article  >  Java  >  How to solve the garbled Chinese parameters in Java?

How to solve the garbled Chinese parameters in Java?

青灯夜游
青灯夜游Original
2019-12-31 15:24:522159browse

How to solve the garbled Chinese parameters in Java?

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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn