mysql数据库读取乱码、插入乱码解决方案
jsp文件,要添加<%@page pageEncoding="utf-8"
contentType="text/html;charset=utf-8"%>
表单设置method="post"。
step2 在servlet类当中,添加
request.setCharacterEncoding("utf-8");
step3 如果要访问数据库:
a,保证数据库能够正常地保存中文。
对于mysql
create database dbname
default character set utf8;
b,使用jdbc访问数据库时,必须要保证
jdbc驱动程序能够识别数据库中保存
数据的编码。
jdbc:mysql://localhost:3306/jd1109db2?
useUnicode=true&characterEncoding=utf8
页:
[1]