java页面怎么取得jsp页面的值
(1)直接在URL请求后添加
如:<a href="thexuan.jsp?action=transparams&detail=directe")直接传递参数, 特别的在使用response.sendRedirect做页面转向的时候,也可以用如下代码: response.sendRedirect("thexuan.jsp?action=transparams&detail=directe") ,可用request.getParameter(name)取得参数
(2)jsp:param
它可以实现主页面向包含页面传递参数,如下:
还可以实现在使用jsp:forward动作做页面跳转时传递参数,如下:
通过这种方式和一般的表单参数一样的,也可以通过request.getParameter(name)取得参数
(3)设置session和request
通过显示的把参数放置到session和request中,以达到传递参数的目的
session.setAttribute(name,value);
request.setAttribute(name,value)
取参数:value=(value className)session.getAttribute(name);
value=(value className)request.getAttribute(name);
request.vo.id 通过request获取后台的值,${vo.id} 通过EL表达式获取后台值,区别,EL需要在导入相应的包,二而request可以直接使用,通常情况下不管是在表单还是在script 代码中,都可以使用,主要看个人习惯。
(2)<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<html>
<body>
<!--post或get-->
<form id="test" method="post" action="action.jsp">
select id="se_id" name="seid">
<option value="值1">cn</option>
<option value="值2">us</option>
<option value="值3">en</option>
</select>
<input type="submit" value="提交表单">
<br>
</form>
</body>
</html>
(3)<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<html>
<body>
<form id="test" method="post" action="index.jsp">
<select id="code" name="plugin">
<option value="1cn">cn</option>
<option value="2us">us</option>
<option value="3en">en</option>
</select>
<input type="submit" value="提交">
<br>
<%out.println(request.getParameter("plugin")); %>
</form>
</body>
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>
<%
String name = request.getParameter("username");
System.out.println("name = " + name);
%>
<body>
<form action="" name="form1" method="post">
<input type="text" name="username" value="gg"/>
</form>
</body>
</html>
name值为null