我有这个网址:http://localhost:8080/Test/jsp/index.jsp?userName=%E5%AE%98%E8%AF%9D
。但是当我试图得到userName
:
<meta http-equiv="test" content="text/html; charset=UTF-8">
<%
String username = request.getParameter("userName");
out.print("<b>"+username+"</b>");
%>
userName
印刷品不可读。我的页面已经是 UTF-8 并且还保存为 UTF-8,如何获取和打印准确的汉字?