页面传入数据库乱码

关于页面传入数据库乱码的问题,主要是需要把页面的编码、程序的编码和数据库的编码都设为utf-8就可以很大程度上避免出现乱码了。

数据库设置如下(MySQL)

 

Eclipse设置如下

还有jsp页面也要改(没有改之前Eclipse的默认编码格式是ISO-8859-1)

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>

如果已经统一设置过之后他还是乱码,我的处理方法是在Servlet层的response和request再设置一次,代码如下

@Override
    protected void doPost(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
        
        request.setCharacterEncoding("utf-8");
        response.setContentType("text/html;charset=utf-8");
        // TODO Auto-generated method stub

posted on 2015-12-17 21:43  Seven_Yao  阅读(286)  评论(0编辑  收藏  举报

导航