UTF-8 GBK问题求助?
<!-- Copyright (c) 2002 by ObjectLearn. All Rights Reserved. -->
<%@page contentTye="text/html;charset=UTF-8"%>
<html>
<head>
<title>Welcome</title>
</head>
<body>
<%
String src = "中文";
String country = request.getParameter("country");
/**
request.getParameter("country")->"中文";
*/
out.println(src);
out.println(country);
%>
</body>
</html>
以上代码如何正确显示中文?服务器为JBOSS3.2.1+TOMCAT4,谢谢!