合规国际互联网加速 OSASE为企业客户提供高速稳定SD-WAN国际加速解决方案。 广告
## 请求中文乱码解决: 1. 使用String进行数据重新编码:`uname = new String(uname.getByte("iso88559-1"),"utf-8"); 2. 使用公共配置: ``` get方式: 步骤一:request.setCharacterEncoding("UTF-8"); 步骤二:在tomcat目录下的conf目录中修改service.xml文件:在Connector标签中增加属性useBodyEncodingForURI="ture"; post方式: resquest.setCharacterEncoding("utf-8"); ```