JFileChooser: isFileHidingEnabled() : JFileChooser « javax.swing « Java by API
- Java by API
- javax.swing
- JFileChooser
JFileChooser: isFileHidingEnabled()
import javax.swing.JFileChooser;
public class Main {
public static void main(String[] argv) {
JFileChooser chooser = new JFileChooser();
boolean hidingEnabled = chooser.isFileHidingEnabled();
chooser.setFileHidingEnabled(false);
chooser.showOpenDialog(null);
}
}
Related examples in the same category