0

我的jsp文件中有这段代码

<%  
//Instantiate MetaMap and bring the output words
coding_sugest csug=new coding_sugest();
//Get the value from the textarea
if (request.getParameter("phy_exam")==null){
    response.sendRedirect("index.html");
}

String x_value=request.getParameter("phy_exam");
csug.setPhy_exam(x_value);
out.println("<h3>"+x_value+"</h3>");
//Call to bring the list of positive words
List<String> word_suggestions=(csug.positive_words());
Iterator<String> it = word_suggestions.iterator();
//Print the list values to a textarea
out.println("<textarea name='suggest_list' rows='10' id='word_suggest'>");
        while(it.hasNext()){
            out.println(it.next());
        }
out.println("</textarea>");
%>

通过这种方式,我调用我的类,然后调用该类的一个方法,为我带来一些文本值以将它们填充到<textarea>. 我希望用户对其进行修改,<textarea>然后使用这些新文本值创建一个新列表,以便我可以使用数据库中的新值进行查询。有人可以帮帮我吗?

4

1 回答 1

0

您应该在jsp文件中使用<form>. 此外,您应该为您的表单添加一个提交按钮。这个表单应该被转发到一个java servlet“servlet”中,你应该将用户输入添加到数据库中。

如果您有任何问题,请告诉我。

于 2013-03-27T13:50:53.860 回答