17

How do you add a JList to a JScrollPane ?

monojohnny
  • 5,894
  • 16
  • 59
  • 83
hiii
  • 571
  • 2
  • 6
  • 10
  • 1
    [Here is how to add scroll bar to list][1] [1]: http://stackoverflow.com/questions/940838/adding-scrollbar-to-jlist – David Mathias Mar 20 '13 at 11:57
  • Read the section from the Swing tutorial on [How to Use Lists](http://docs.oracle.com/javase/tutorial/uiswing/components/list.html) for a working example. That is start with the tutorials for the basics, not the forum. – camickr Mar 20 '13 at 15:11

1 Answers1

30

Put your JList in a JScrollPane

JScrollPane scrollPane = new JScrollPane();
JList list = new JList();
scrollPane.setViewportView(list);
Apurv
  • 3,723
  • 3
  • 30
  • 51