JAVA学生信息管理系统连接MYSQL用GUI界面书写代码
时间: 2024-02-29 10:51:27 浏览: 87
以下是一个简单的Java学生信息管理系统GUI界面连接MySQL数据库的代码示例:
```java
import java.awt.BorderLayout;
import java.awt.EventQueue;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.List;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import javax.swing.border.EmptyBorder;
import javax.swing.table.DefaultTableModel;
public class StudentGUI extends JFrame {
private JPanel contentPane;
private JTable table;
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
StudentGUI frame = new StudentGUI();
frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
public StudentGUI() {
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setBounds(100, 100, 600, 400);
contentPane = new JPanel();
contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
contentPane.setLayout(new BorderLayout(0, 0));
setContentPane(contentPane);
// 创建表格模型
DefaultTableModel model = new DefaultTableModel();
model.addColumn("ID");
model.addColumn("姓名");
model.addColumn("年龄");
model.addColumn("性别");
model.addColumn("专业");
// 获取所有学生信息
List<Student> students = StudentDAO.getAllStudents();
for (Student s : students) {
Object[] row = { s.getId(), s.getName(), s.getAge(), s.getGender(), s.getMajor() };
model.addRow(row);
}
// 创建表格
table = new JTable(model);
JScrollPane scrollPane = new JScrollPane(table);
contentPane.add(scrollPane, BorderLayout.CENTER);
// 创建按钮面板
JPanel buttonPanel = new JPanel();
contentPane.add(buttonPanel, BorderLayout.SOUTH);
// 创建添加按钮
JButton addButton = new JButton("添加");
addButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
AddStudentDialog dialog = new AddStudentDialog(StudentGUI.this);
dialog.setVisible(true);
}
});
buttonPanel.add(addButton);
// 创建编辑按钮
JButton editButton = new JButton("编辑");
editButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
int selectedRow = table.getSelectedRow();
if (selectedRow == -1) {
JOptionPane.showMessageDialog(StudentGUI.this, "请先选择一条记录", "错误", JOptionPane.ERROR_MESSAGE);
return;
}
int id = (int) table.getValueAt(selectedRow, 0);
String name = (String) table.getValueAt(selectedRow, 1);
int age = (int) table.getValueAt(selectedRow, 2);
String gender = (String) table.getValueAt(selectedRow, 3);
String major = (String) table.getValueAt(selectedRow, 4);
Student s = new Student(id, name, age, gender, major);
EditStudentDialog dialog = new EditStudentDialog(StudentGUI.this, s);
dialog.setVisible(true);
}
});
buttonPanel.add(editButton);
// 创建删除按钮
JButton deleteButton = new JButton("删除");
deleteButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
int selectedRow = table.getSelectedRow();
if (selectedRow == -1) {
JOptionPane.showMessageDialog(StudentGUI.this, "请先选择一条记录", "错误", JOptionPane.ERROR_MESSAGE);
return;
}
int id = (int) table.getValueAt(selectedRow, 0);
String name = (String) table.getValueAt(selectedRow, 1);
int age = (int) table.getValueAt(selectedRow, 2);
String gender = (String) table.getValueAt(selectedRow, 3);
String major = (String) table.getValueAt(selectedRow, 4);
Student s = new Student(id, name, age, gender, major);
int option = JOptionPane.showConfirmDialog(StudentGUI.this, "确定要删除此记录吗?", "确认", JOptionPane.YES_NO_OPTION);
if (option == JOptionPane.YES_OPTION) {
StudentDAO.deleteStudent(s);
model.removeRow(selectedRow);
}
}
});
buttonPanel.add(deleteButton);
}
public void addStudent(Student s) {
Object[] row = { s.getId(), s.getName(), s.getAge(), s.getGender(), s.getMajor() };
DefaultTableModel model = (DefaultTableModel) table.getModel();
model.addRow(row);
StudentDAO.addStudent(s);
}
public void updateStudent(Student s) {
int selectedRow = table.getSelectedRow();
table.setValueAt(s.getName(), selectedRow, 1);
table.setValueAt(s.getAge(), selectedRow, 2);
table.setValueAt(s.getGender(), selectedRow, 3);
table.setValueAt(s.getMajor(), selectedRow, 4);
StudentDAO.updateStudent(s);
}
}
```
这个示例代码中,我们定义了一个 `StudentGUI` 类,表示学生信息管理系统的GUI界面。在这个类中,我们使用了一个 `JTable` 组件来显示学生信息,并使用了 `DefaultTableModel` 来管理表格数据。我们还创建了三个按钮:添加、编辑和删除按钮,分别用来添加、编辑和删除学生信息。在添加和编辑学生信息时,我们分别使用了 `AddStudentDialog` 和 `EditStudentDialog` 对话框来获取用户输入,并将新的学生信息添加到表格中。在删除学生信息时,我们使用了一个确认对话框来提示用户是否确认删除。同时,我们还在 `StudentGUI` 类中实现了两个方法 `addStudent()` 和 `updateStudent()`,用来在添加或编辑学生信息时更新表格数据和数据库中的数据。
阅读全文