编码问题
Posted ifree_x
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了编码问题相关的知识,希望对你有一定的参考价值。
jsp+html的编码问题:
<%@ page language="java" contentType="text/html; charset=utf-8" %>
<%@ page language="java" pageEncoding="utf-8" %>
jsp要使用UTF-8编码,html要使用UTF-8编码,在eclipse可用右键文件——>format修改
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
action中文编码:
因为jsp文件用的是utf-8编码,所以服务器要一致
server.xml
<Connector URIEncoding="UTF-8" port="8080" protocol="HTTP/1.1"
connectionTimeout="20000" redirectPort="8443" />
struts.xml:
<constant name="struts.i18n.encoding" value="UTF-8"></constant>
以上是关于编码问题的主要内容,如果未能解决你的问题,请参考以下文章