我的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>
,然后创建一个包含这些新文本值的新列表,以便我可以使用新值查询我的数据库。
有人可以帮帮我吗?
答案 0 :(得分:0)
您应该使用jsp
在<form>
文件中添加表单。您还应该为表单添加提交按钮。此表单应转发到java servlet
,在'servlet'中,您应该将用户输入添加到数据库中。
如果您有任何疑问,请告诉我。