Home Answers Viewqa Swing-AWT How to select default FileFilter when creating a JFileChooser dialog?

 
 


Java Coder
How to select default FileFilter when creating a JFileChooser dialog?
1 Answer(s)      9 months ago
Posted in : Swing AWT

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

View Answers

August 21, 2012 at 12:48 PM


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









Related Pages:

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.