跪求jsp+数据库实现的抽奖程序?要有源代码。因为数据量大,几十上百万的,用文本的不现实,所以需求数据
答案:2 悬赏:80 手机版
解决时间 2021-02-21 22:36
- 提问者网友:椧運幽默
- 2021-02-21 11:45
跪求jsp+数据库实现的抽奖程序?要有源代码。因为数据量大,几十上百万的,用文本的不现实,所以需求数据
最佳答案
- 五星知识达人网友:毛毛
- 2021-02-21 12:29
参考答案:海顿、莫扎特、贝多芬。
全部回答
- 1楼网友:轻熟杀无赦
- 2021-02-21 12:53
jsp登录连接数据库源代码
果你是直接从jsp 跳转到jsp 的话
%
request.setcharacterencoding("gbk");
string uname=request.getparameter("username"); //获得登录页面的登录名
string upass=request.getparameter("userpass"); //获得登录页面的登录密码
userinfodao udao=new userinfodao();
boolean result= udao.checklogin(uname,upass); //根据登录名和密码验证是否存在
if(result==true){
%
欢迎你%= uname%
%}else{%
登录失败!
%}
%
public class userinfodao extends database{
private connection con;
private preparedstatement titlesquery;
private resultset res;
//根据登录名和密码验证是否存在
public boolean checklogin(string uname,string upass){
boolean result=false;
try{
con=this.getconnection();
titlesquery=con.preparestatement(" select upass from userinfo where uname = ? ");
titlesquery.setstring(1, uname);
res=titlesquery.executequery();
while(res.next()){
if (res.getstring("upass").equals(upass)) {
result=true;
}
}
}catch(sqlexception exception){
exception.printstacktrace();
}finally{
this.closeall(con, titlesquery, res);
}
return result;
}
}
喜居宝地千年旺 福照家门万事兴 喜迎新春
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯