使用JSP获取文本框值

| 我是使用JSP的新手,我需要通过单击按钮从文本框中获取值。我在服务器apache tomcat中使用Java Netbeans。这是这样的... 一旦用户输入值,该文本框将被包含在HTML标记“ 0”中,单击该按钮,然后将出现一个带有输入值的消息框。 我对JSP不熟悉,这给我带来了麻烦。     
已邀请:
我的答案非常熟悉第一个答案。 mainPage.jsp
<html>
  <head>
    <title>Your Title Here</title>
  </head>
  <body>
    <form action=\"sample.jsp\" method=\"POST\">
      <input type=\"text\" id=\"firstname\" name=\"firstname\" />
      <input type=\"submit\" value=\"Submit\" />
    </form>
  </body>
</html>
sample.jsp
<%@ page language=\"java\" contentType=\"text/html; charset=ISO-8859-1\" pageEncoding=\"ISO-8859-1\"%>
<%
    String firstname = request.getParameter(\"firstname\");
    /* 
     * Some code here
     */
%>
我也在使用apache tomcat。 您必须按照第一个答案中所述配置web.xml。 希望能有所帮助。     
您需要在web.xml中配置servlet 创建一个表单并将日期发布到该servlet 在这里,我概述了它的外观 您的JSP
<form action\"/yourServlet\" method =\"post\">
<input type=\"text\" name=\"age\"/>
<input type=\"SUBMIT\" />
</form>
您的Servlet
doPost(....){
  String age = request.getParameter(\"age\");
}
必看 Servlet Wiki页面     

要回复问题请先登录注册