标签:style http io ar os 使用 java sp for
Html使用的编码是UTF-8编码显示页面,之后使用form表单提交字段到Servlet中,Servlet将利用getParamer方法获得form提交的字段,之后通过Respone中的writer将获取到的前台字段反馈到前台中去,出现中午乱码错误,这是因为添加了这个字段。
response.setContentType("text/html");
// 设置输入的编码格式为utf-8
request.setCharacterEncoding("utf8");
// 设置输入的编码格式为utf-8
response.setCharacterEncoding("utf8");
public void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
// 设置输入的编码格式为utf-8
request.setCharacterEncoding("utf8");
// 设置输入的编码格式为utf-8
response.setCharacterEncoding("utf8");
// 给浏览器的标示,该字体为text/html
response.setContentType("text/html");
PrintWriter out = response.getWriter();
// 做一些输出操作...........
// out.println();
out.flush();
out.close();
}
标签:style http io ar os 使用 java sp for
原文地址:http://www.cnblogs.com/sober-reflection/p/4086635.html