學生管理系統java簡單實現

ExcesiveYue發表於2017-12-21
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();
}
   
}

相關文章