1. JScrollPane 을 먼저 생성함

JScrollPane total_List_Scroll = new JScrollPane();

total_List_Scroll.setBounds(12, 257, 771, 143);

stock_contentPane.add(total_List_Scroll);


2. JList 생성함

total_List = new JList();


3. 생성된 스크롤판에 setViewportView에 생성된 JList를 넣어줌

total_List_Scroll.setViewportView(total_List);




블로그 이미지

왕왕왕왕

,