-2

在我的 JSP 中,我有一个包含地址路径的文本框。我需要将此地址值传递给Servlet. 如何将文本框值传递给 servlet?

4

3 回答 3

0
<html>
  <head>
    <title>Testing JSP</title>
  </head>
  <body>
    <h1>Welcome to JSP</h1>
    <form action="myjsp.jsp" method="POST" >
            <input type="text" name="name" />
      <p> 
        <input type="submit" name="Submit" value="Submit name" />

      </p>
    </form>
  </body>
</html>

<%
    String name = request.getParameter("name");

%>
于 2012-12-15T08:32:02.073 回答
0

我认为您需要使用 Request 对象来获取该值。

于 2012-12-15T08:26:04.300 回答
0

我的.jsp

<form name="myForm" action="myServlet" method="post">
<input type="text" name="mytext" />
<input type="submit" name="Submit" value="Submit name" />
</form>

在您的页面中编写上述代码jsp(即my.jsp)。

我的Servlet.java

PrintWriter out = response.getWriter();
String text = request.getParameter("mytext");
 out.println(text);

上面的代码将写在您的servlet页面中(即myServlet.java)。

注意: -action根据您的更改表格servlet。就我而言,我在这里写了myServlet

于 2012-12-15T08:31:19.477 回答