JSP 有关<jsp:include>里的<jsp:param> 传参数 不知道为什么出 空指针

<html><head><title>Compute</title><metahttp-equiv="Content-Type"content="text/html"ch... <html>
<head>
<title>Compute</title>
<meta http-equiv="Content-Type" content="text/html" charset="gb2312">
</head>
<body>
<form method="post" action="Compute.jsp">
请选择要做的运算
<p>
除法<input type="radio" name="compute" value="1">
<p>
乘法<input type="radio" name="compute" value="2">
<p>
被除数或被乘数
<input type="text" name="v1">
<p>
除数或乘数
<input type="text" name="v1">

<input type="submit" name="submit" value="计算结果">
</body>
</html>
以上是网页

下面是Compute.jsp
<%@page language="java"%>

<html>
<head>
<title>xixi</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body>
<h1>
<%
String value1 = request.getParameter("value1");
String value2 = request.getParameter("value2");

%>

<% if(request.getParameter("compute").equals("1")){ %>
<jsp:include page="division.jsp" flush="true">
<jsp:param name="v1" value="<%=value1%>"/>
<jsp:param name="v2" value="<%=value2%>"/>
</jsp:include>
<% } else{ out.print("haha");
out.print(request.getParameter("compute"));
} %>

</h1>
</body>

再转到这里
<html>
<head>
<title>Divide</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body>
<h1>
<%
String s = request.getParameter("v1");
out.println(s);

%>

</h1>
</body>
</html>
s 值就是null,为什么 request.getParameter("v1"); 取不到<jsp:param name="v1" value="<%=value1%>"/> 传过来的值啊,就是页面上输入的
展开
 我来答
优质内容提供者andy
2016-05-18 · TA获得超过1561个赞
知道大有可为答主
回答量:2551
采纳率:72%
帮助的人:759万
展开全部
Compute.jsp
下面这两个是不是写错了。
String value1 = request.getParameter("v1");
String value2 = request.getParameter("v2");
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式