JFileChooser class, how to make it cool?

The JFileChoose is really easy to use and works great for making a pale looking database or other desktop application but when making a retail game it does not fit the style of the UI.

Is there any good way to tailor make an extending class from JFileChooser where I can put in my own bg’s, (choose the opacity false to make the bgs show) and replace the default button images for different states to make it fit my own chosen style?

The positioning of the buttons and stuff in JFileChooser I can accept if it cannot be changed but the colors and style need to change.

So, is that possible or should I just make my own class for it? I know some ppl will say it just very simple to make an own and I agree but despite being easy it will take alot of time due to all error controlm filtering options and if you want players to be able to pick their own directories to save in and stuff.

Java Look and Feel lets you do this for all swing components (including JFileChooser).

Worth checking out:

http://today.java.net/pub/a/today/2004/02/27/laf.html

and

https://substance.dev.java.net/

For cool stuff.

Kev

Note that Substance doesn’t provide any special functionality on top of the core file chooser. It only skins it according to the current settings.