2

如何将 value=x 从 JSP 传递给 servlet?我搜索了许多相关问题,但无法得到答案。这里 x 是一个变量。

<html>
<body>
<%@ page import="java.lang.*"%>
<%!int x,y; %>
<% String a,b;
a=request.getParameter("jobs");
b=request.getParameter("process");
x=0;
y=0;
try
{
 x=Integer.parseInt(a);
   y=Integer.parseInt(b);
}
catch(Exception e)
{ }
  out.println("You selected - <br>");
  out.println("Jobs - "+x+"<br>");
  out.println("Process - "+y);
   String path="table?input=x";
   %>

  <jsp:include page="table" > 
   <jsp:param name="input"  value=x/>
  </jsp:include>

</body>
</html>
4

1 回答 1

5

由于变量x在 scriptlet 中,您需要使用 <%= %>

<jsp:include page="table" > 
    <jsp:param name="input"  value="<%=x%>"/>
</jsp:include>
于 2013-04-01T08:36:19.747 回答