Java Servlet:如何检索选定的单选按钮值?

时间:2012-04-06 18:32:49

标签: java servlets radio-button

我创建了一个简单的servlet,在其中向用户呈现2个问题,回答是真还是假。我的问题在于检索用户选择的答案。

代码:

            out.println("<FORM ACTION=\"Game\" METHOD = \"POST\">" +

        "<b>Question 1: Are you over the age of 25? </b><br> <br>" +

        "<input type = \"radio\" name = \"Q1rad1\" onclick = \"getAnswer('a')\"> True " +
        "<input type = \"radio\" name = \"Q1rad2\" onclick = \"getAnswer('b')\"> False<br>" +

        "<br><br><b>Question 2: Are you from earth?</b><br> <br>" +

        "<input type = \"radio\" name = \"Q2rad1\" onclick = \"getAnswer('a')\"> True " +
        "<input type = \"radio\" name = \"Q2rad2\" onclick = \"getAnswer('b')\"> False<br>" +

        out.println("<Center><INPUT  TYPE=\"SUBMIT\"></Center>");


        );

每个问题都有2个单选按钮,Q1rad1&amp; Q2rad2,用于回答真或假。按下提交按钮时,如何知道每个用户选择的值。

我知道使用Javascript时效率可能更高,但出于这个问题的目的,我必须使用servlet。

4 个答案:

答案 0 :(得分:10)

您必须在选择单选按钮时定义要检索的值

设置定义了如果选中将提交的内容。

name 设置告诉该字段属于哪组单选按钮。当您选择一个按钮时,同一组中的所有其他按钮都将被取消选择。

<input type = "radio" name = "Q2" onclick = \"getAnswer('b') value="b">
<input type = "radio" name = "Q2" onclick = \"getAnswer('a') value="a">

在接收请求的Servlet中,您将拥有类似

的内容
public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    // get the value of the button group 
    String q2 = request.getParameter("Q2");
    // compare selected value 
    if ("a".equals(q2)) {
       ...
    }
    ...

}

答案 1 :(得分:6)

您尚未正确命名单选按钮。同一问题的每个无线电选项都需要相同的名称属性。此外,每个value都应该有<input type="radio">个属性。我根本不确定你需要onclick处理程序。您还应该有</form>更近的标记。您的表单可能如下所示:

 out.println("<form action=\"Game\" method=\"POST\">" +

    "<b>Question 1: Are you over the age of 25? </b><br> <br>" +

    "<input type = \"radio\" name = \"Q1\" value=\"True\"> True " +
    "<input type = \"radio\" name = \"Q1\" value=\"False\"> False<br>" +

    "<br><br><b>Question 2: Are you from earth?</b><br> <br>" +

    "<input type = \"radio\" name = \"Q2\" value=\"True\"> True " +
    "<input type = \"radio\" name = \"Q2\" value=\"False\"> False<br>" +

    "<Center><INPUT  TYPE=\"SUBMIT\"></Center>" +

    "</form>"
    );

然后在处理表单提交的servlet的doPost()方法中,您可以使用request.getParameter()访问值。像这样:

protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    String q1 = request.getParameter("Q1");
    String q2 = request.getParameter("Q2");
    // more processing code...
}

答案 2 :(得分:3)

为同一问题的无线电指定相同的名称,并设置不同的值。 看看这个page

然后在请求中,您将获得一个参数,其中包含无线电组的名称和所选的值。 提交servlet后收到的帖子可以使用:

String value = request.getParameter("radioName");

答案 3 :(得分:1)

对于您的HTML代码,以下行就足够了

protected void doPost(HttpServletRequest req,HttpServletResponse res){
String q1 = request.getParameter("Q1");
String q2 = request.getParameter("Q2");`
}

例如,考虑您的HTML代码。

如果按下Q1

  

“TRUE”

然后它将是我们在Servlet中的“输入”。