Re: Adding encoding selection to JFileChooser



What I would ideally like to do is just add a third drop-down option
below the file type selector. Is this possible? Does anyone have any
ideas?

you have to go deep into WindowsFileChooserUI.
WindowsFileChooserUI has method getBottomPanel();

the bottomPanel contains two other panels - left one contains Labels and
right one contains JComboBoxes.

You can override method installComponents()
First call super.installComponents(); and then add yours.

HTH

Andrey

--
http://uio.imagero.com Unified I/O for Java
http://reader.imagero.com Java image reader
http://jgui.imagero.com Java GUI components and utilities


.