,JSP/Servlet 汉字乱码解决方法
JSP:
1. 在头部添加 ContentType 属性,
可解决页面汉字显示乱码问题
<%@ page contentType="text/html; charset=gb2312" %>
2. 设置request的CharacterEncoding属性为 GBK 或 GB2312,
可解决表单上传汉字乱码
<%request.setCharacterEncoding("GB2312");%>
Servlet:
1. PrintWriter 取代 ServletOutputStream
PrinterWriter 将根据contentType中指定的charset作转换(ContentType需在此之前指定!);
response.setContentType("text/html;charset=gb2312");
PrintWriter out=response.getWriter();//替换ServletOutputStream out=res.getOutputStream();
2. 设置request的CharacterEncoding属性
读取表单汉字
request.setCharacterEncoding("GB2312");
JSP/Servlet 汉字乱码处理方法
最新推荐文章于 2023-01-11 13:03:35 发布