JSP中文問題,急助!!!

zhangxu116發表於2004-06-18

<%@ page contentType="text/html;charset=GB2312" %>
<html>
<body>
<form action="bbb.jsp" method="post">
Name:<input type="text" name=zhang>
<input type=submit>
</form>
</body>
</html>

bbb.jsp
<%@ page contentType="text/html;charset=GB2312" %>
<html>
<body>
Your name:<%= request.getParameter("zhang") %>
</body>
</html>
<p class="indent">

每次傳遞的引數都為亂碼,如何使得到的引數變為中文,謝謝幫忙

相關文章