• 大小: 413KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-05-23
  • 语言: Java
  • 标签: java  

资源简介

jsp学生课绩管理系统(源代码+论文).zip jsp学生课绩管理系统(源代码+论文).zip

资源截图

代码片段和文件信息

import java.sql.*;
public class checkGroup{
   String cour_idstu_id;
   
   public void setCour_id(String id){cour_id=id;}
   public String getCour_id(){return cour_id;}
   public void setStu_id(String id){stu_id=id;}
   public String getStu_id(){return stu_id;}


public boolean isPre(){
String a=““;
     boolean ispre =false;
     String sql=“select course.prepare from course where id=‘“+cour_id+“‘ “;
     sqlBean db = new sqlBean();
     try{
     ResultSet rs =db.executeQuery(sql);
     if(rs.next())
     {a=rs.getString(“prepare“);}
       }catch(SQLException ex){ 
      System.err.println(“课程号查询有错误:“+ex.getMessage() ); 
      System.out.print(“课程号查询有错误:“+ex.getMessage());//输出到客户端 
           }
        if(a.equals(“0“) )  
        {ispre=false;}
        else ispre=true;
return ispre;
}

  public boolean checkpre(){
   boolean f=true;
   if(isPre()){
   String sql=“select enrol.class_id “+
“from enrol classescourse “+
“where enrol.stu_id=‘“+stu_id+“‘ “+
  “and course.id=‘“+cour_id+“‘ “+
  “and course.prepare=classes.cour_id “+
  “and enrol.class_id=classes.id  “;
sqlBean db = new sqlBean();
     try{
 ResultSet rs = db.executeQuery(sql);
    if(rs.next()) {f=true;} 
    else f=false;}
     catch(SQLException ex){ 
      System.err.println(“课程号查询有错误:“+ex.getMessage() ); 
      System.out.print(“课程号查询有错误:“+ex.getMessage());//输出到客户端 
           }     
      } 
   return f;
       }
                 
public boolean hasLogin(){   //检查该学生是否已经注册
   boolean f=true;
   String sql=“select stu_idclass_id “+
“from enrolclasses “+
“where stu_id=‘“+stu_id+“‘ “+
“and classes.id=enrol.class_id “+
“and cour_id=‘“+cour_id+“‘ “;
   sqlBean db =new sqlBean();
   try{
   ResultSet rs=db.executeQuery(sql);
   if(rs.next()){ f=false;}
   else{ f=true;}
   }catch(Exception e){ e.getMessage();}
   return f;
                          }



 public String getClassid(){
  String class_id=null;
  if(checkpre()){
  String sql=“select classes.id from classes where cour_id=‘“+cour_id+“‘ “;
     sqlBean db = new sqlBean();
     ResultSet rs = db.executeQuery(sql);
     try{
  if(rs.next()){class_id=rs.getString(“id“); }
       }catch(SQLException ex){ 
      System.err.println(“课程号查询有错误:“+ex.getMessage() ); 
      System.out.print(“课程号查询有错误:“+ex.getMessage());//输出到客户端 
           }
          } else {class_id=“error“;}
             return class_id;
  }
    
    
    public String getTime(){
     String class_id=getClassid();
     String time=““;
     if(checkpre()){
       String sql=“select cour_time from classes where cour_id=‘“+cour_id+“‘“;    
        sqlBean db = new sqlBean();
     ResultSet rs = db.executeQuery(sql);
     try{
         if(rs.next()) { time=rs.getString(“cour_time“);}
           }catch(SQLException ex){ 
      System.err.println(“查询有错误:“+ex.getMessage() ); 
      System.out.print(“查询有错误:“+ex.getMessage());//输出到客户端 

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-07-08 21:00  jsp学生课绩管理系统(源代码+论文)\
     文件     1264128  2013-12-20 13:01  jsp学生课绩管理系统(源代码+论文)\backup_ClassDB.BAK
     文件     1179648  2013-12-20 18:01  jsp学生课绩管理系统(源代码+论文)\ClassDB_Data.MDF
     文件     1048576  2013-12-20 13:01  jsp学生课绩管理系统(源代码+论文)\ClassDB_Log.LDF
     目录           0  2018-07-08 21:00  jsp学生课绩管理系统(源代码+论文)\test\
     文件        3249  2013-12-20 19:01  jsp学生课绩管理系统(源代码+论文)\test\AddClass.jsp
     文件        1438  2013-12-20 09:01  jsp学生课绩管理系统(源代码+论文)\test\addClass_confirm.jsp
     文件        2200  2013-12-20 17:01  jsp学生课绩管理系统(源代码+论文)\test\Addcourse.jsp
     文件        1494  2013-12-20 13:01  jsp学生课绩管理系统(源代码+论文)\test\addcourse_confirm.jsp
     文件        1938  2013-12-20 17:01  jsp学生课绩管理系统(源代码+论文)\test\addstudent.jsp
     文件        1525  2013-12-20 17:01  jsp学生课绩管理系统(源代码+论文)\test\addstudent_confirm.jsp
     文件        1438  2013-12-20 13:01  jsp学生课绩管理系统(源代码+论文)\test\addteacher.jsp
     文件        1295  2013-12-20 16:01  jsp学生课绩管理系统(源代码+论文)\test\addteacher_confirm.jsp
     文件         915  2013-12-20 16:01  jsp学生课绩管理系统(源代码+论文)\test\admin.jsp
     文件        1386  2013-12-20 12:01  jsp学生课绩管理系统(源代码+论文)\test\checkGrourp.jsp
     文件        1245  2013-12-20 11:01  jsp学生课绩管理系统(源代码+论文)\test\checkmark.jsp
     文件        1226  2013-12-20 13:01  jsp学生课绩管理系统(源代码+论文)\test\detail.jsp
     文件        1401  2013-12-20 16:01  jsp学生课绩管理系统(源代码+论文)\test\determine.jsp
     文件         712  2013-12-20 14:01  jsp学生课绩管理系统(源代码+论文)\test\determine_confirm.jsp
     文件        1051  2013-12-20 13:01  jsp学生课绩管理系统(源代码+论文)\test\determine_marking.jsp
     文件        2362  2013-12-20 14:01  jsp学生课绩管理系统(源代码+论文)\test\DisplayCourse.jsp
     文件         499  2013-12-20 11:01  jsp学生课绩管理系统(源代码+论文)\test\errorpage.jsp
     文件        1563  2013-12-20 19:01  jsp学生课绩管理系统(源代码+论文)\test\getcourse.jsp
     文件         750  2013-12-20 10:01  jsp学生课绩管理系统(源代码+论文)\test\getcourse_confirm.jsp
     文件        2232  2013-12-20 09:01  jsp学生课绩管理系统(源代码+论文)\test\getStudent.jsp
     文件         757  2013-12-20 10:01  jsp学生课绩管理系统(源代码+论文)\test\getstudent_confirm.jsp
     文件        1452  2013-12-20 13:01  jsp学生课绩管理系统(源代码+论文)\test\getteacher.jsp
     文件         765  2013-12-20 13:01  jsp学生课绩管理系统(源代码+论文)\test\getteacher_confirm.jsp
     文件        7383  2013-12-20 14:01  jsp学生课绩管理系统(源代码+论文)\test\login.jsp
     文件        1079  2013-12-20 09:01  jsp学生课绩管理系统(源代码+论文)\test\login_confirm.jsp
     文件        1103  2013-12-20 18:01  jsp学生课绩管理系统(源代码+论文)\test\marking.jsp
............此处省略46个文件信息

评论

共有 条评论