大家在JSP的開發過程中
一
下面的顯示頁面(display
<html>
<head>
<title>JSP的中文處理</title>
<meta http
</head>
<body>
<%
out
%>
</body>
</html>
對不同的WEB服務器和不同的JDK版本
英文代碼<%@ page contentType=
就可以消除亂碼了
<%@ page contentType=
<html>
<head>
<title>JSP的中文處理</title>
<meta http
</head>
<body>
<%
out
%>
</body>
</html>
二
下面是一個提交頁面(submit
<html>
<head>
<title>JSP的中文處理</title>
<meta http
</head>
<body>
<form name=
<div align=
<input type=
<input type=
</div>
</form>
</body>
</html>
[
From:http://tw.wingwit.com/Article/program/Java/JSP/201311/20716.html