I succeeded in creating a JFileChooser
in the windows look and feel with the following code
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (Exception e) { }
But when the JFileChooser comes up, it is missing buttons to the right of the drop-down menu of file names. The buttons that are missing are the up one level, create new Folder, list view, and details view buttons.
Any ideas on how I can get them back?
Thanks!