下面是處理頁面(process
<html>
<head>
<title>JSP的中文處理</title>
<meta http
</head>
<body>
<%=request
</body>
</html>
如果submit
<%@ page contentType=
<%
request
%>
<html>
<head>
<title>JSP的中文處理</title>
<meta http
</head>
<body>
<%=request
</body>
</html>
三
只要涉及中文的地方全部是亂碼
四
在mysql
public String iso
{
try{
if (qs == null) return
else
{
return new String(qs
}
}
catch(Exception e){
System
}
return
}
public String gb
{
try
{
if (qs == null) return
else {
return new String(qs
}
catch(Exception e){ System
return
}
字符存入數據庫時用 gb
[
From:http://tw.wingwit.com/Article/program/Java/JSP/201311/20717.html