• 大小: 809KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-06-11
  • 语言: Java
  • 标签: java  

资源简介

JAVA做的学生成绩管理系统,SWING做的界面。SQLServer数据库.初学JAVA,如果有见到我程序的朋友,见笑了。偶是菜鸟,对JAVA只有一点认识。热爱JAVA的朋友,共同学习进步啦!祝愿大家都学好JAVA

资源截图

代码片段和文件信息

package studentsystem;

import java.awt.*;
import javax.swing.*;
import java.awt.Rectangle;
import java.awt.Font;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

public class AboutUs extends Jframe {
    ImageIcon img11 = new ImageIcon(
            “image/java.jpg“);
    JPanel contentPane;
    JLabel jLabel1 = new JLabel();
    JButton jButton1 = new JButton();
    JLabel jLabel2 = new JLabel();
    public AboutUs() {
        try {
            jbInit();
            this.setLocation(200 200);
            this.setResizable(false);
            this.setVisible(true);
        } catch (Exception exception) {
            exception.printStackTrace();
        }
    }

    /**
     * Component initialization.
     *
     * @throws java.lang.Exception
     */
    private void jbInit() throws Exception {
        contentPane = (JPanel) getContentPane();
        contentPane.setLayout(null);
        setSize(new Dimension(260 200));
        settitle(“关于我们“);
        jLabel1.setIcon(img11);
        jLabel1.setBounds(new Rectangle(47 1 104 106));
        jButton1.setBounds(new Rectangle(205 144 49 24));
        jButton1.setFont(new java.awt.Font(“宋体“ Font.PLAIN 14));
        jButton1.setForeground(Color.red);
        jButton1.setText(“OK“);
        jButton1.addActionListener(new AboutUs_jButton1_actionAdapter(this));
        jLabel2.setFont(new java.awt.Font(“宋体“ Font.PLAIN 13));
        jLabel2.setForeground(Color.blue);
        jLabel2.setText(“欢迎JAVA爱好者共同学习:727306717“);
        jLabel2.setBounds(new Rectangle(7 115 241 28));
        contentPane.add(jLabel1);
        contentPane.add(jLabel2);
        contentPane.add(jButton1);

    }

    public void jButton1_actionPerformed(ActionEvent e) {
        this.dispose();
    }
}


class AboutUs_jButton1_actionAdapter implements ActionListener {
    private AboutUs adaptee;
    AboutUs_jButton1_actionAdapter(AboutUs adaptee) {
        this.adaptee = adaptee;
    }

    public void actionPerformed(ActionEvent e) {
        adaptee.jButton1_actionPerformed(e);
    }
}

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

     文件       2007  2008-06-20 21:25  StudentSystem\bak\studentsystem\AboutUs.java~37~

     文件       2005  2008-06-20 21:25  StudentSystem\bak\studentsystem\AboutUs.java~38~

     文件       2143  2008-06-20 21:27  StudentSystem\bak\studentsystem\AboutUs.java~39~

     文件       2143  2008-06-20 21:28  StudentSystem\bak\studentsystem\AboutUs.java~40~

     文件       2143  2008-06-20 21:28  StudentSystem\bak\studentsystem\AboutUs.java~41~

     文件       2158  2008-06-20 21:30  StudentSystem\bak\studentsystem\AboutUs.java~42~

     文件       2157  2008-06-20 21:31  StudentSystem\bak\studentsystem\AboutUs.java~43~

     文件       2158  2008-06-20 21:32  StudentSystem\bak\studentsystem\AboutUs.java~44~

     文件       2158  2008-06-20 21:33  StudentSystem\bak\studentsystem\AboutUs.java~45~

     文件       2158  2008-06-20 21:33  StudentSystem\bak\studentsystem\AboutUs.java~46~

     文件        818  2008-06-05 00:34  StudentSystem\bak\studentsystem\AboutUsframe.java~1~

     文件        752  2008-06-05 00:35  StudentSystem\bak\studentsystem\AboutUsframe.java~2~

     文件        752  2008-06-05 00:36  StudentSystem\bak\studentsystem\AboutUsframe.java~3~

     文件        940  2008-06-05 00:37  StudentSystem\bak\studentsystem\AboutUsframe.java~4~

     文件        812  2008-06-05 00:38  StudentSystem\bak\studentsystem\AboutUsframe.java~5~

     文件        896  2008-06-05 00:40  StudentSystem\bak\studentsystem\AboutUsframe.java~6~

     文件        929  2008-06-05 00:40  StudentSystem\bak\studentsystem\AboutUsframe.java~7~

     文件       2403  2008-06-05 00:48  StudentSystem\bak\studentsystem\AboutUsframe.java~8~

     文件       1047  2008-06-04 23:12  StudentSystem\bak\studentsystem\ConDB.java~1~

     文件       1147  2008-06-05 00:57  StudentSystem\bak\studentsystem\ConDB.java~2~

     文件       1027  2008-06-07 00:24  StudentSystem\bak\studentsystem\ConDB.java~3~

     文件        942  2008-06-07 00:32  StudentSystem\bak\studentsystem\ConDB.java~4~

     文件       2072  2008-06-18 23:05  StudentSystem\bak\studentsystem\ConDB.java~5~

     文件       2088  2008-06-18 23:07  StudentSystem\bak\studentsystem\ConDB.java~6~

     文件       2088  2008-06-18 23:07  StudentSystem\bak\studentsystem\ConDB.java~7~

     文件       4487  2008-06-20 18:44  StudentSystem\bak\studentsystem\DeleteStu.java~10~

     文件       4668  2008-06-20 18:46  StudentSystem\bak\studentsystem\DeleteStu.java~11~

     文件       6354  2008-06-20 18:51  StudentSystem\bak\studentsystem\DeleteStu.java~12~

     文件       6642  2008-06-20 18:57  StudentSystem\bak\studentsystem\DeleteStu.java~13~

     文件       6644  2008-06-20 18:58  StudentSystem\bak\studentsystem\DeleteStu.java~14~

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

评论

共有 条评论