• 大小: 732KB
    文件类型: .rar
    金币: 2
    下载: 1 次
    发布日期: 2021-08-28
  • 语言: 其他
  • 标签: 信息系统  

资源简介

本资源为学生信息管理系统,实现的功能如下: 1、查询学生信息 可选择按姓名、专业、院系查询,并显示查询结果。 2、查询课程信息 可选择按课程号、课程名、学分查询,并显示查询结果。 3、录入、修改学生基本信息、院系信息、教师基本信息 要求界面布局美观、实用 4、删除某院系、某条学生信息、某教师信息 考虑表间的关联,若删除某学院,则该学院的所有学生应同时删除。 5、查询选修了某课程的学生学号和姓名 6、查询未选修任何课程的学生学号和姓名 7、添加选课信息,即某同学选择了某课程。添加后若进行查询,则应能找到。 8.做登陆界面,设定管理员权限

资源截图

代码片段和文件信息

import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.sql.*;

import javax.swing.JButton;
import javax.swing.Jframe;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;

public class course_information extends Jframe implements ActionListener
{
public static String kechenghao1;
public static String kechengming1;
public static String xuefen1;
public static JTextField kechenghao=new JTextField();
public static JTextField kechengming=new JTextField();
public static JTextField xuefen=new JTextField();

String sDBDriver=“sun.jdbc.odbc.JdbcOdbcDriver“;
String sConnStr=“jdbc:odbc:mry“;
ResultSet rs=null;
Connection conn=null;


  JPanel  jp1=new JPanel();
  JLabel  label1=new JLabel(“课程号:“); 
  JLabel  label2=new JLabel(“课程名:“); 
  JLabel  label3=new JLabel(“学分:“); 
  JButton chaxun=new JButton(“查询“);
  JButton fangqi=new JButton(“返回“);
  public course_information()
     {   setVisible(true);
         //setSize(10001000);
         setResizable(false);
         try {
         Class.forName(sDBDriver);
         } catch(java.lang.ClassNotFoundException e){
         System.err.print(e.getMessage());
         }
     
       this.add(jp1);
       jp1.setLayout(null);
       jp1.add(chaxun);
       jp1.add(fangqi);
       jp1.add(label1);
       jp1.add(label2);
       jp1.add(label3);
       jp1.add(kechenghao);
       jp1.add(kechengming);
       jp1.add(xuefen);
       kechenghao.setBounds(1204014020);
       kechengming.setBounds(1208014020);
       xuefen.setBounds(12012014020);
       label1.setBounds(60407020);
       label2.setBounds(60807020);
       label3.setBounds(601207020);
       chaxun.setBounds(601608030);
       fangqi.setBounds(1801608030);
        this.settitle(“课程信息查询“);
        this.setBounds(340240300250);
        this.setVisible(true);
        this.setDefaultCloseOperation(Jframe.HIDE_ON_CLOSE);
       chaxun.addActionListener(this);
       fangqi.addActionListener(this);
       
     }


public void actionPerformed(ActionEvent e) {
 
   if(e.getSource()==fangqi)
   {
    this.setVisible(false);
   // System.exit(0);
    new menu();
   }
   else if(e.getSource()==chaxun)
   {
kechenghao1 = kechenghao.getText();
kechengming1 = kechengming.getText();
xuefen1 = xuefen.getText();
this.setVisible(false);
new course_output();

   }
}

public static void main (String[] args){
  new course_information();
}

}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        226  2010-05-15 15:13  学生信息管理系统\.classpath

     文件          0  2010-05-16 00:23  学生信息管理系统\.metadata\.lock

     文件        477  2010-05-16 00:27  学生信息管理系统\.metadata\.log

     文件        692  2010-05-16 00:25  学生信息管理系统\.metadata\.mylyn\backup\mylyndata-2010-05-16.zip

     文件        332  2010-05-16 00:25  学生信息管理系统\.metadata\.mylyn\repositories.xml.zip

     文件        212  2010-05-16 00:25  学生信息管理系统\.metadata\.mylyn\tasklist.xml.zip

     文件         26  2010-05-16 00:25  学生信息管理系统\.metadata\.plugins\org.eclipse.core.resources\.history\0\10b5bfc83e60001f1a428434b4e1c496

     文件         79  2010-05-16 00:25  学生信息管理系统\.metadata\.plugins\org.eclipse.core.resources\.history\0\c0b466c73e60001f1a428434b4e1c496

     文件       3022  2010-05-16 00:25  学生信息管理系统\.metadata\.plugins\org.eclipse.core.resources\.history\1\505604c13e60001f1a428434b4e1c496

     文件       3150  2010-05-16 00:25  学生信息管理系统\.metadata\.plugins\org.eclipse.core.resources\.history\1\801884c23e60001f1a428434b4e1c496

     文件       3925  2010-05-16 00:25  学生信息管理系统\.metadata\.plugins\org.eclipse.core.resources\.history\10\10b7a1c63e60001f1a428434b4e1c496

     文件       4637  2010-05-16 00:25  学生信息管理系统\.metadata\.plugins\org.eclipse.core.resources\.history\10\409d33c43e60001f1a428434b4e1c496

     文件        379  2010-05-16 00:25  学生信息管理系统\.metadata\.plugins\org.eclipse.core.resources\.history\10\500e15d53e60001f1a428434b4e1c496

     文件         26  2010-05-16 00:25  学生信息管理系统\.metadata\.plugins\org.eclipse.core.resources\.history\10\708df3c03e60001f1a428434b4e1c496

     文件       4637  2010-05-16 00:25  学生信息管理系统\.metadata\.plugins\org.eclipse.core.resources\.history\10\c0af5ec53e60001f1a428434b4e1c496

     文件        236  2010-05-16 00:25  学生信息管理系统\.metadata\.plugins\org.eclipse.core.resources\.history\10\d02713c53e60001f1a428434b4e1c496

     文件       3925  2010-05-16 00:25  学生信息管理系统\.metadata\.plugins\org.eclipse.core.resources\.history\10\f04471cf3e60001f1a428434b4e1c496

     文件         79  2010-05-16 00:25  学生信息管理系统\.metadata\.plugins\org.eclipse.core.resources\.history\11\70da01c03e60001f1a428434b4e1c496

     文件       2690  2010-05-16 00:25  学生信息管理系统\.metadata\.plugins\org.eclipse.core.resources\.history\11\e07944cd3e60001f1a428434b4e1c496

     文件         79  2010-05-16 00:25  学生信息管理系统\.metadata\.plugins\org.eclipse.core.resources\.history\13\d0dec8c13e60001f1a428434b4e1c496

     文件        267  2010-05-16 00:25  学生信息管理系统\.metadata\.plugins\org.eclipse.core.resources\.history\14\00825cc43e60001f1a428434b4e1c496

     文件        434  2010-05-16 00:25  学生信息管理系统\.metadata\.plugins\org.eclipse.core.resources\.history\15\6059b6ce3e60001f1a428434b4e1c496

     文件        236  2010-05-16 00:25  学生信息管理系统\.metadata\.plugins\org.eclipse.core.resources\.history\17\10cceec33e60001f1a428434b4e1c496

     文件        236  2010-05-16 00:25  学生信息管理系统\.metadata\.plugins\org.eclipse.core.resources\.history\17\703aecc03e60001f1a428434b4e1c496

     文件       4010  2010-05-16 00:25  学生信息管理系统\.metadata\.plugins\org.eclipse.core.resources\.history\17\e005abc63e60001f1a428434b4e1c496

     文件       3581  2010-05-16 00:25  学生信息管理系统\.metadata\.plugins\org.eclipse.core.resources\.history\18\206917c13e60001f1a428434b4e1c496

     文件         26  2010-05-16 00:25  学生信息管理系统\.metadata\.plugins\org.eclipse.core.resources\.history\19\90cffad43e60001f1a428434b4e1c496

     文件       3150  2010-05-16 00:25  学生信息管理系统\.metadata\.plugins\org.eclipse.core.resources\.history\1b\3035a6c43e60001f1a428434b4e1c496

     文件       4637  2010-05-16 00:25  学生信息管理系统\.metadata\.plugins\org.eclipse.core.resources\.history\1c\805d46c03e60001f1a428434b4e1c496

     文件        332  2010-05-16 00:25  学生信息管理系统\.metadata\.plugins\org.eclipse.core.resources\.history\1c\a057d6d43e60001f1a428434b4e1c496

............此处省略739个文件信息

评论

共有 条评论