JSP乱码问题,我刚研究过的,又出现了,这次解决不了了,大家帮忙看看怎么回事?
下面是我的JSP代码:
<html>
<head>
<meta http-equiv= "Content-Type " content= "text/html; charset=utf-8 ">
<title> ÎÞ±êÌâÎĵµ </title>
<style type= "text/css ">
<!--
.style1 {color: #EE0000}
-->
</style>
</head>
<body>
<h1 align= "center "> <span class= "style1 "> 学习网站后台管理系统 </span> </h1>
<h1> </h1>
</body>
</html>
只要一按“保存”就会出来对话框,下面是对话框提示:
“Save could not be completed
Ression:
Some characters cannot be mapped using "ISO-8859-1” character encoding either change the encoding or remove the characters which are not supported by the "ISO-8859-1 " character encoding. "
以前我遇到这个问题时,改一下文件属性“utf-8 "就行了,可是这次还是不行,怎么回事,请多指教呀?小弟感谢不尽,急呀。。。
[解决办法]
<%
request.setCharacterEncoding( "gb2312 ")
%>
[解决办法]
把这一句 <meta http-equiv= "Content-Type " content= "text/html; charset=utf-8 "> 去掉
把这一句 <%@page contentType= "text/html;charset=GB2312 "%> 放在文件头
[解决办法]
涉及到字符编码的都换成utf-8
文件右击的properties中字符编码的设置也是utf-8
试试!
[解决办法]
1.编码问题:
(1)首先确定JSP页面头部是否有: <%@ page contentType= "text/html; charset=GBK " %>
(2)类似这样的转码:
String param= new String(request.getParameter( "param ").getBytes( "ISO-8859-1 "), "GBK ");
(3)添加filter字符过滤器,具体做法:
先添加类:
import javax.servlet.Filter;
import javax.servlet.FilterConfig;
import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
import javax.servlet.FilterChain;
import java.io.IOException;
import org.apache.log4j.Logger;
import java.net.URLEncoder;
/** *//**
* 请求中中文字符串过滤类
*/
public class SetEncodingFilter
implements Filter ...{
private Logger logger=Logger.getLogger(this.getClass());
public void init(FilterConfig filterConfig) throws ServletException ...{
}
public void doFilter(ServletRequest request, ServletResponse response,
FilterChain chain) throws IOException, ServletException ...{
logger.info( "请求转码过滤器=================== ");
request.setCharacterEncoding( "gb2312 ");
chain.doFilter(request,response);
}
public void destroy() ...{
}
}
再注册类到XML里:
<filter>
<filter-name> Set Encoding </filter-name>
<filter-class> SetEncodingFilter </filter-class>
</filter>
<filter-mapping>
<filter-name> Set Encoding </filter-name>
<url-pattern> /* </url-pattern>
</filter-mapping>
(4)如果是通过 "a.jsp?param=中文 "传递参数,则需要:
a.在传参数之前先把参数进行转码:java.net.URLEncoder.encode(param);
取值用java.net.URLDncoder.dncode(param);再转回中文
b.在你的Tomcat目录--> conf目录--> server.xml里找出这段:
<Connector
port= "8080 " maxThreads= "150 " minSpareThreads= "25 " maxSpareThreads= "75 "
enableLookups= "false " redirectPort= "8443 " acceptCount= "100 "
debug= "0 " connectionTimeout= "20000 "
disableUploadTimeout= "true " <!--在里边加上这个参数--> URIEncoding= "gb2312 "
/>
(5)数据库乱码,首先确定你在插入数据库之前是中文,解决办法:
在数据库的数据库连接URL中加上useUnicode=true&characterEncoding=GBK就OK了。
如果在读取的时候出现乱码用第二种方法解决.
[解决办法]
用SPRING里自带过滤器即可
[解决办法]
在TOMCAT里或WEBLOGIC的站点配置文件里有个设置字符编码的地方,改一下那个地方。