用jsp将xml文件解析到网页显示,并把数据提交保存到数据库(8)
来源:未知 责任编辑:责任编辑 发表时间:2014-05-20 18:33 点击:次
out.println("<p>保存问卷"+question_id+": 多选题"+str[1]+"成功!"+"</p>");
}catch(SQLException e){
e.printStackTrace();
}
}else if(((String)entry.getKey()).matches("te_[0-99]_[0-99]")){
try{
String te= request.getParameter((String)entry.getKey());
String[] str=((String)entry.getKey()).split("_");
conn=DriverManager.getConnection(url);
//创建执行语句
String sql="insert into question(question_id,username,q_id,q_type,qanswer)"
+" values('"+question_id
+"','"+username
+"','"+str[1]
+"','"+str[2]
+"','"+te
+"')";
stmt=conn.createStatement();
stmt.execute(sql);
stmt.close(); //关闭连接、释放资源
conn.close();
out.println("<p>保存问卷"+question_id+": 问答题"+str[1]+"成功!"+"</p>");
}catch(SQLException e){
e.printStackTrace();
}
}
}
}else{
out.println("<p>保存失败,没有输入用户名</p>");
}
%>
</body>
</html>
相关新闻>>
- 发表评论
-
- 最新评论 更多>>