urlencoder.encode中文乱码
时间: 2023-11-16 21:15:35 浏览: 64
URL传中文参数导致乱码的解决方案之encodeURI
在使用 `urlencoder.encode()` 方法对中文进行编码时,可以指定编码方式为 `UTF-8`,例如:
```
String encodedString = URLEncoder.encode("中文", "UTF-8");
```
这样可以避免中文乱码问题。在解码时,使用对应的 `URLDecoder.decode()` 方法进行解码,例如:
```
String decodedString = URLDecoder.decode(encodedString, "UTF-8");
```
阅读全文