My ScrollPane won't show to my JList. I tried using this, this, and many other ways to add a scroll on my jlist but it wont just show. Here is the sample of my code.
JScrollPane scrollPane = new JScrollPane(list_1);
list_1 = new JList();
scrollPane.setViewportView(list_1);
list_1.setBounds(16, 94, 579, 248);
contentPane.add(list_1);
contentPane.add(scrollPane);
My JList consists of array of files (paths) that came from my database.