俺是新手 问点程序问题
一个小的程序<html>
<body>
<form action = 123.jsp method = post>
<table>
<tr><td bgcolor = red>姓名</td>
<td><input type = text size = 20 name = name></td>
</tr>
<tr><td bgcolor = yellow>兴趣</td>
<td><select name = hobby multiple size =5>
<option>踢足球
<option>打篮球
<option>逛街
<option>看书
<option>听歌</select>
</td>
</tr>
<tr><td align = center><input type = submit value = 送出></td>
</tr>
</table>
</form>
</body>
</html>
<%@ page contentType="text/html; charset=GB2312"%>
<%@ page language="java"%>
<html>
<body>
<%
String name = request.getParameter("name");
String hobby[]=request.getParameterValues("hobby");
out.print("姓名: " +name + "<p>");
out.print("兴趣:");
for(int i=0;i<hobby.length;i++)
out.print(hobby[i]+".");
%>
</body>
</html>
123.jsp
文件 没问题
为什么运行后转不了字体呢?姓名和兴趣显示正常,后边的都是问号
谁能帮我看看 ?? 谢谢了