企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
## 请求中文乱码解决: 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"); ```