学生管理系统java简单实现

import javax.swing.*;
import java.awt.*;
import java.util.Vector;
public class Test  extends JFrame{
Vector rowData,columnNames;
JTable jt=null;
JScrollPane jsp=null;
public Test() {
columnNames=new Vector();
columnNames.add("学号");
columnNames.add("名字");
columnNames.add("性别");
columnNames.add("年龄");
columnNames.add("籍贯");
columnNames.add("系别");

rowData=new Vector();
//rowData可以存放多行数据 

Vector  hangfirst=new Vector();
hangfirst.add("1");
hangfirst.add("2");
hangfirst.add("3");
hangfirst.add("4");
hangfirst.add("5");
hangfirst.add("6");

rowData.add(hangfirst);
jt=new JTable(rowData,columnNames);
jsp=new JScrollPane(jt);

this.add(jsp);
this.setSize(300,400);
this.setVisible(true);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);


// TODO Auto-generated constructor stub
}
   public static void main(String[] args) {
new Test();
}
   
}

你可能感兴趣的:(学生管理系统java简单实现)