Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I link the drop down lists with files in hard disk, so that on selecting an option in drop down list (which is actually a folder in one of the drive of the hard disk) must get selected and it must display the files present in the folder in the same list?

share|improve this question

2 Answers

I think what you need is a JFileChooser. You can find a tutorial on how to use it here.

share|improve this answer

You should get the directories you want to show (java.io.File instances) and use these directories as the items of the combo box. Then add an action listener of this combo box. This listener will be called each time the user selects one of the directories in the combo box. Then just ask the combo box its selected item, and list the files of the selected directory.

You may customize how the directories are displayed inside the combo box using a ListCellRenderer.

I suggest you read the Swing tutorial, where all this is well explained.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.