How to use the default file chooser for the operating system?

Use the old java.awt.FileDialog instead:

new java.awt.FileDialog((java.awt.Frame) null).setVisible(true);

Leave a Comment