JSP连接数据库 空指针异常怎么解决

<%Integeraa=(Integer)session.getAttribute("id");Integerrest=(Integer)session.getAttri... <%
Integer aa=(Integer)session.getAttribute("id");
Integer rest=(Integer)session.getAttribute("rest");
int tempid=aa.intValue();
int flag=0;
Connection conn=null;
PreparedStatement pstat=null;
DBConn db=new DBConn();
try{
String sql="update t_ticket set rest=? where id=?";
conn=db.getConn();
pstat=conn.prepareStatement(sql);
pstat.setInt(1,rest-1);
pstat.setInt(2,aa);
flag=pstat.executeUpdate();
if(flag!=0){
response.sendRedirect("jpd.jsp");
}else{
response.sendRedirect("error.jsp");
}
}catch(SQLException e){
System.out.println("数据库处理失败"+e.toString());
}finally{

if(pstat!=null) pstat.close();
if(conn!=null) conn.close();

}

%>
这段代码中String sql="update t_ticket set rest=? where id=?";
conn=db.getConn();
pstat=conn.prepareStatement(sql);
pstat.setInt(1,rest-1);
pstat.setInt(2,aa);
flag=pstat.executeUpdate();
是不是有问题u
展开
 我来答
Hsolitude
2013-06-20 · TA获得超过181个赞
知道小有建树答主
回答量:164
采纳率:100%
帮助的人:131万
展开全部
代码是写在页面中了吧,包你导了没?
<%import ...%>
更多追问追答
追问


这个吧?
追答
你传过来的id的值,在数据库中有值么? 你这是更新语句,如果没有值。。。
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式