使用 JSP 获取文本框值

发布于 2024-11-09 12:24:25 字数 205 浏览 0 评论 0原文

我是 JSP 的新手,我需要通过单击按钮从文本框中获取值。我正在使用 Java Netbeans 和服务器 apache tomcat。它是这样工作的...

文本框包含在 HTML 标记 中,一旦用户输入一个值,他单击该按钮,然后将出现一个消息框,其中包含他输入的值。

我对 JSP 不熟悉,这让我很困难。

I'm new in using JSP and I need to get a value from a textbox by upon clicking a button. I am using Java Netbeans with the server apache tomcat. This is how it works...

The textbox is enclosed in an HTML tag <table> once the user inputs a value, he clicks the button then a message box will appear with the value he entered.

I am not familiar with JSP and it gives me a hard time.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

苦妄 2024-11-16 12:24:25

您需要在 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");
}

必须请参阅

You need to configure a servlet in web.xml

Create a form and post the date to that servlet

Here I have outlined how it should look

Your JSP

<form action"/yourServlet" method ="post">
<input type="text" name="age"/>
<input type="SUBMIT" />
</form>

Your Servlet

doPost(....){
  String age = request.getParameter("age");
}

Must See

音栖息无 2024-11-16 12:24:25

我的回答和第一个答案很熟悉。

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>

example.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 。

希望有帮助。

My answer is quite familiar with the first answer.

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
     */
%>

I'm also using apache tomcat.

You have to configure your web.xml as said in the first answer.

Hope that helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文