struts2,mysql乱码

jsp页面+struts2的action+mysql
中文乱码
解决:
页面
< %@ page language ="java" import ="java.util.*" pageEncoding ="GBK"% >
一定记住form的method为"post"
< form action ="saveUser.action" method ="post" >
struts配置
< constant name ="struts.i18n.encoding" value ="GBK" />
mysql安装的时候会要求选择编码方式,选择GBK.

你可能感兴趣的:(struts2)