JSP数据库交互 5

<%request.setCharacterEncoding("GBK");Stringname=request.getParameter("user");Stringp... <%
request.setCharacterEncoding("GBK");
String name =request.getParameter("user") ;
String pass = request.getParameter("pass");
User user = new User();
user.setName("name");
user.setPass("pass");
DaoImpl daoImpl = new DaoImpl();
user = daoImpl.findUser(name);
if(user!=null && pass!=null){
if(pass.equals(user.getName()) || name.equals(daoImpl.findUser(name)) ){
session.setAttribute("login",user.getName());
//response.sendRedirect("bb.jsp");
}else{
response.sendRedirect("index.jsp");
}
}
%>

<body>
<form action="bb.jsp" name = "myform" method="post">
<table>
<tr>
<td>用户名:<input type ="text" name="user"></td><td valign="top"><br></td>
</tr>
<tr>
<td>密 码:<input type ="text" name="pass" size ="20"></td><td valign="top"><br></td>
</tr>
<tr>
<td><input type ="submit" name="submit" value = "确定"></td><td valign="top"><br></td>
</tr>
</table>
</form>

//数据public class DaoImpl extends Dao{
public User findUser(String uName){
Connection conn=null;
PreparedStatement pstmt = null;
ResultSet rs = null;
User user1=null;
String sql = "select * from User_Table where name=?";
try{
conn = this.getConn();

pstmt = conn.prepareStatement(sql);
pstmt.setString(1, uName);
rs =pstmt.executeQuery();
if(rs.next()){
user1 = new User();
user1.setName(rs.getString(1));
user1.setPass(rs.getString(2));

}
}catch(Exception e){
e.printStackTrace();
}finally{
this.closeAll(conn, pstmt, rs);
}
return user1;
}库代码数据库我用直连就不写了还有个实体类也不写了
数据库字段name ,pass我在一个Text上输入123 123 要实现和数据库交互帮我看看代码 谢谢!!!
展开
 我来答
zbg2cd99
2008-11-08
知道答主
回答量:46
采纳率:0%
帮助的人:23.8万
展开全部
有什么便宜错误或运行异常出现么?还是代码你有什么没看懂的呢?
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
济南易客云
2008-11-08 · 超过17用户采纳过TA的回答
知道答主
回答量:69
采纳率:0%
帮助的人:35.7万
展开全部
就是,你这代码哪里有错误吗?你是不是北大青鸟的学员?
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式