Hi,
In my swing application I want my application to open the my specific directory say "c:\mydirectory" when browse button is clicked.
How to select default FileFilter when creating a JFileChooser dialog?
Thanks
Hi,
Following code can be used:
JFileChooser c = new JFileChooser(); c.setFileSelectionMode(c.DIRECTORIES_ONLY); String defaultDirectoryPath = "C:\\mydirectory"; c.setSelectedFile(new File(defaultDirectoryPath));
Thanks
Ads