jsp到action乱码

1、如果jsp页面设置的<%@ page language="java" pageEncoding="GBK" contentType="text/html; charset=GBK"%>的话,在struts.xml配置文件中加上<constant name="struts.i18n.encoding" value="GBK"></constant>就OK了。如果是utf-8的话,<constant name="struts.i18n.encoding" value="utf-8"></constant>
2、如果jsp页面是utf-8的话还出现乱码, new String(str.getBytes("ISO-8859-1"), "UTF-8");转换一下就OK了

你可能感兴趣的:(jsp乱码问题,jsp到action乱码)