• 大小: 2.67MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-11-19
  • 语言: Java
  • 标签: Java  SQLserver  

资源简介

学生成绩管理系统,Java+SQLserver,内附说明书。教师端登录信息的增删改查,成绩的增删改查。学生端登录,只能查看自己的信息以及成绩。都能成功运行。较简单,初学者入门可用。

资源截图

代码片段和文件信息

package Graphical_User_Interface;

import java.awt.FlowLayout;
import java.awt.Font;
import java.awt.event.ItemEvent;
import java.awt.event.ItemListener;

import javax.swing.ImageIcon;
import javax.swing.JComboBox;
import javax.swing.Jframe;
import javax.swing.JLabel;
import javax.swing.JPanel;

@SuppressWarnings(“serial“)
public class Choice extends Jframe implements ItemListener{
String account;
String password;

JComboBox JC_box = new JComboBox();

Font font = new Font(“楷体_GB2312“Font.BOLD+Font.ITALIC20);

String path = “C:/Users/yangcheng/workspace/DatabaseExperiment/src“
+ “/Graphical_User_Interface/Choice.png“;

JPanel jpl = new JPanel();

public Choice(String ac String pd){
account = ac;
password = pd;

this.settitle(“学籍管理系统“);
this.setSize(250200);
this.setLayout(new FlowLayout());
this.setLocationRelativeTo(null);

ImageIcon bg = new ImageIcon(path);                        //背景图片
JLabel label = new JLabel(bg);
label.setBounds(00bg.getIconWidth()bg.getIconHeight());
this.getlayeredPane().add(label new Integer(Integer.MIN_VALUE));
JPanel imgP = (JPanel)this.getContentPane();
imgP.setOpaque(false);

JC_box.addItem(“功能选择“);
JC_box.addItem(“学生档案管理“);
JC_box.addItem(“学生学籍管理“);
JC_box.addItem(“学生成绩管理“);
JC_box.addItem(“统计、查询“);
JC_box.setSelectedItem(“选择功能“);    //默认选项
JC_box.setFont(font);

JC_box.addItemListener(this);

jpl.add(JC_box);
jpl.setOpaque(false);

        this.add(jpl);
        
        this.setVisible(true);
this.setResizable(true);
}

public void itemStateChanged(ItemEvent e){                          //下拉框Item
if(e.getStateChange() == ItemEvent.SELECTED){
if(JC_box.getSelectedItem()==“学生档案管理“){                   //学生档案管理
new Record_Manage(accountpassword);
JC_box.setSelectedIndex(0);
}

if(JC_box.getSelectedItem()==“学生学籍管理“){ //学生学籍管理
new School_Manage(accountpassword);
JC_box.setSelectedIndex(0);
}

if(JC_box.getSelectedItem()==“学生成绩管理“){ //学生成绩管理
new Score_Manage(accountpassword);
JC_box.setSelectedIndex(0);
}

if(JC_box.getSelectedItem()==“统计、查询“){ //统计、查询
new Statistics_Manage(accountpassword);
JC_box.setSelectedIndex(0);
}
}
}
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-04-16 16:28  管理系统\
     目录           0  2018-04-16 16:28  管理系统\成绩管理\
     文件         373  2018-04-16 16:28  管理系统\成绩管理\.classpath
     文件         394  2018-04-16 16:28  管理系统\成绩管理\.project
     目录           0  2018-04-16 16:28  管理系统\成绩管理\.settings\
     文件         598  2018-04-16 16:28  管理系统\成绩管理\.settings\org.eclipse.jdt.core.prefs
     目录           0  2018-04-16 16:28  管理系统\成绩管理\bin\
     目录           0  2018-04-16 16:28  管理系统\成绩管理\bin\Graphical_User_Interface\
     文件       59691  2018-04-16 16:28  管理系统\成绩管理\bin\Graphical_User_Interface\11.jpg
     文件        3255  2018-04-16 16:28  管理系统\成绩管理\bin\Graphical_User_Interface\Choice.class
     文件      368540  2018-04-16 16:28  管理系统\成绩管理\bin\Graphical_User_Interface\Choice.png
     文件      170084  2018-04-16 16:28  管理系统\成绩管理\bin\Graphical_User_Interface\Record.jpg
     文件       19558  2018-04-16 16:28  管理系统\成绩管理\bin\Graphical_User_Interface\Record_Manage.class
     文件        6322  2018-04-16 16:28  管理系统\成绩管理\bin\Graphical_User_Interface\Register.class
     文件       15832  2018-04-16 16:28  管理系统\成绩管理\bin\Graphical_User_Interface\School_Manage.class
     文件       15349  2018-04-16 16:28  管理系统\成绩管理\bin\Graphical_User_Interface\Score_Manage.class
     文件       16162  2018-04-16 16:28  管理系统\成绩管理\bin\Graphical_User_Interface\Statistics_Manage.class
     文件      335182  2018-04-16 16:28  管理系统\成绩管理\bin\Graphical_User_Interface\backg3.jpg
     文件          79  2018-04-16 16:28  管理系统\成绩管理\bin\Graphical_User_Interface\tip.txt
     文件         487  2018-04-16 16:28  管理系统\成绩管理\bin\Graphical_User_Interface\主页.png
     文件        1356  2018-04-16 16:28  管理系统\成绩管理\bin\Graphical_User_Interface\切换用户.png
     文件         776  2018-04-16 16:28  管理系统\成绩管理\bin\Graphical_User_Interface\功能选1择.png
     文件         838  2018-04-16 16:28  管理系统\成绩管理\bin\Graphical_User_Interface\功能选择.png
     文件        1377  2018-04-16 16:28  管理系统\成绩管理\bin\Graphical_User_Interface\成功.png
     文件         879  2018-04-16 16:28  管理系统\成绩管理\bin\Graphical_User_Interface\注册.png
     文件         897  2018-04-16 16:28  管理系统\成绩管理\bin\Graphical_User_Interface\注销.png
     文件         783  2018-04-16 16:28  管理系统\成绩管理\bin\Graphical_User_Interface\登录.png
     文件      422869  2018-04-16 16:28  管理系统\成绩管理\bin\Graphical_User_Interface\背景.png
     目录           0  2018-04-16 16:28  管理系统\成绩管理\bin\Main\
     文件        9280  2018-04-16 16:28  管理系统\成绩管理\bin\Main\Main.class
     目录           0  2018-04-16 16:28  管理系统\成绩管理\src\
............此处省略23个文件信息

评论

共有 条评论