I feel like there should be a simple way to do this but I can't figure it out. I have a JFileChooser that allows the user to select directories. I want to show all the files in the directories to give the user some context, but only directories should be accepted as selections (maybe the Open button would be disabled when a file is selected). Is there an easy way of doing this?
|
Override the approveSelection() method. Something like:
|
|||
|
|
|
My solution is a merge between the answers of camickr and trashgod:
|
|||||
|
|
See
Addendum: The effect can be see by uncommenting line 73 of this demo, but it appears to be platform-dependent. Addendum: If using
Also, consider using
|
|||||||||||
|
|
AFAIK JFileChooser separates file filtering (what can be viewed, very configurable) from selection filtering (what can be chosen). The configuration of selection filtering is much more limited, but AFAIK you can choose to allow only dirs or only files to be selected with setFileSelectionMode() |
|||
|
|
|
I think the best solution is just to allow the user to select either a file or a directory. And if the user select a file just use the directory where that file is located. |
|||
|
|
|
The solution of overriding Sometimes, a user would just click on a file in a directory for no reason (even though she wants to select the directory and not the file). If that happens, the user would be (kind-a) stuck in the
Selecting the directory, even when the user selected a file results in a better usability in my opinion. |
||||
|
|