<%@ page language="java" contentType="text/html; charset=utf-8"
pageEncoding="utf-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Insert title here</title>
</head>
<body>
<h1>jsp内置对象</h1>
<!-- 防止中文乱码 -->
<%request.setCharacterEncoding("utf-8"); %>
用户名:<%=request.getParameter("username") %><br>
<!-- getParameterValues用于获取数组,getParameter获取一个-->
爱好:<%
String[] aihao=request.getParameterValues("fav");
for(int i=0;i<aihao.length;i++){
out.println(aihao[i]+"  ");
}
%>
</body>
</html>
pageEncoding="utf-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Insert title here</title>
</head>
<body>
<h1>jsp内置对象</h1>
<!-- 防止中文乱码 -->
<%request.setCharacterEncoding("utf-8"); %>
用户名:<%=request.getParameter("username") %><br>
<!-- getParameterValues用于获取数组,getParameter获取一个-->
爱好:<%
String[] aihao=request.getParameterValues("fav");
for(int i=0;i<aihao.length;i++){
out.println(aihao[i]+"  ");
}
%>
</body>
</html>