Tuesday, January 27, 2009

Simple JFileChooser

If you want a simple JFileChooser, without new direcotry, file list combobox, desktop button and button directory up, you can write this:

JFileChooser chooser = new JFileChooser(airportDir);

JPanel optionsPanel = (JPanel) chooser.getComponent(0);
optionsPanel.setVisible(false);