Perhaps, although I do not know if this is recommended. I managed to get it to work by asking the view to update itself on all but the topmost JFileChooser component (as this will replace all chooser components on Nimbus that you don't need).
I would see this as a hack that may or may not work depending on the appearance of Windows. It relies on almost all of JFileChooser created by Swing components. If it has ever been modified to use more direct native rendering (i.e. Java asks Windows to draw a significant portion of the selection), it will not work. I don't know how well this trick will work with other components.
Anyway, this code seemed to work with JDK 7:
package test; import java.awt.Component; import javax.swing.JComponent; import javax.swing.JFileChooser; import javax.swing.UIManager; import javax.swing.plaf.nimbus.NimbusLookAndFeel;
prunge
source share