티스토리 뷰
public class JTableTest extends JFrame {
JTableTest() {
super("JTable Test");
String title[] = { "번호", "이름", "나이" };
String data[][] = { { "1", "김 구", "40" }, { "2", "강감찬", "42" },
{ "3", "이순신", "41" } };
JTable table = new JTable(data,title);
//테이블객체 생성, 데이터와 타이틀을 인자로 가짐
JScrollPane sp = new JScrollPane(table);
//스크롤페인 붙임
getContentPane().add(sp, BorderLayout.CENTER);
//
setSize(300,150);
setVisible(true);
}
public static void main(String[] args) {
// TODO Auto-generated method stub
JTableTest jtable = new JTableTest();
jtable.setDefaultCloseOperation(EXIT_ON_CLOSE);
}
}
'java,web study > 3주차 (7월 15일 ~21일)' 카테고리의 다른 글
스레드 예제 (Bank) (0) | 2013.07.17 |
---|---|
JTable 02 (0) | 2013.07.17 |
Box Layout (0) | 2013.07.17 |
JComboBox (0) | 2013.07.17 |
JTextField, JPasswordField, JTextArea (0) | 2013.07.17 |
댓글