Reputation: 625
Eclipse shows two errors:
The method addChoosableFileFilter in the type JFileChooser is not applicable for the arguments
Type mismatch: cannot convert from FileNameExtensionFilter to FileFilter whats the error, i cant find it?
JFileChooser chooser = new JFileChooser();
FileFilter filter = new FileNameExtensionFilter("PDF Documents", "pdf");
chooser.addChoosableFileFilter(filter);
Upvotes: 0
Views: 403
Reputation: 625
The solution is to import javax.swing.filechooser.FileFilter
instead of java.io.FileFilter
Upvotes: 2