Home > Java > Javagetting Started > body text

How to solve the garbled Chinese parameters in Java?

青灯夜游
Release: 2019-12-31 15:24:52
Original
2176 people have browsed it

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");
Copy after login

[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"/>
Copy after login

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!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template