hobyte
hobyte

Reputation: 625

FileFilter for JFileChooser has compilation errors

Eclipse shows two errors:

JFileChooser chooser = new JFileChooser();
FileFilter filter = new FileNameExtensionFilter("PDF Documents", "pdf");
chooser.addChoosableFileFilter(filter);

Upvotes: 0

Views: 403

Answers (1)

hobyte
hobyte

Reputation: 625

The solution is to import javax.swing.filechooser.FileFilter instead of java.io.FileFilter

Upvotes: 2

Related Questions