求助:Jbuilder 8中
求助:Jbuilder 8中<form>传值时中文显示问题..
我是jsp新手,写了一个很简单的程序zhuce.jsp,如下,显示英文正常,中文为"???",是jsp不支持中文吗?有遇到类似问题的吗?请指教...
<%@ page contentType="text/html; charset=GBK" %>
<html>
<head>
<title>
zhuce
</title>
<meta http-equiv="Content-Type" content="text/html;charset=GBK">
</head>
<body bgcolor="#ffffff">
<%
String username=new String();
username=request.getParameter("username");
out.println("username="+username);
%>
<form method="post" action="zhuce.jsp">
<input type="text" name="username">
<input type="submit" value=" ok ">
</form>
</body>
</html>