Jsp與mysql中的中文顯示問題

在servlet層,要有

response.setContentType("text/html;charset=UTF-8");

request.setCharacterEncoding("UTF-8");

在jsp層要有

<%@ page language="java" import="com.lxn.manager2.*,java.util.*;" contentType="text/html; charset=UTF-8"

pageEncoding="UTF-8"%>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

<title>顯示用戶信息</title>

</head>

在數據庫層,看my配置設置

[client]

port=3306

[mysql]

default-character-set=utf8

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章