I managed to create JFileChooserwindows with the following code in the image
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (Exception e) { }
But when JFileChooser appears, it has no buttons to the right of the file name drop-down menu. Buttons that are absent are on the same level, creating new buttons "Folder", "View List" and "Details".
Any ideas on how I can get them back?
Thank!
chama source
share