我已经声明了一个名为Questions的单独类,以及另一个名为SetQuestions.jsp的JSP文件。
public SurveyQuestionBean()
{
}
public SurveyQuestionBean(String question_description, String file_type, String file_url, String question_type, String answer_type, int min_choice, int max_choice, boolean add_others)
{
this.question_description = question_description;
this.file_type = file_type;
this.file_url = file_url;
this.question_type = question_type;
this.answer_type = answer_type;
this.min_choice = min_choice;
this.max_choice = max_choice;
this.add_others = add_others;
}
上面的代码是针对类的,我有每个属性的get方法。对于JSP,我有用户输入的属性。单击“添加”按钮后,我将首先将输入添加到ArrayList中,因为可能存在多个问题。只有当用户点击完成按钮时,它才会进入数据库。
<%
ArrayList<Questions> ListOfQuestion = new ArrayList<Questions>();
%>
我已经宣布了Arraylist,但是每次用户点击添加按钮时,我如何将Questions对象添加到列表中?顺便说一下,我被困了好几个小时,新手。