我的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>
然后使用这些新文本值创建一个新列表,以便我可以使用数据库中的新值进行查询。有人可以帮帮我吗?