示例:
JSP 页面中:
后台 :String sql = "select * from user where username =?";//从用户表中查询指定用户名的数据
取得文本框中的值:String name = requset.getParameter("username");
然后取得connection对象 conn
Preparestatement pstmt = conn.preparestatement();
pstmt.setString(1,name);//拼接sql语句成为:select * from user where username =(name的值);
最后执行sql语句
传给后台 自己组装啊·