Java Swing Tutorial - Java JFileChooser .resetChoosableFileFilters ()








Syntax

JFileChooser.resetChoosableFileFilters() has the following syntax.

public void resetChoosableFileFilters()

Example

In the following code shows how to use JFileChooser.resetChoosableFileFilters() method.

//from  w ww .j ava 2 s  .  com
import java.io.File;

import javax.swing.JFileChooser;
import javax.swing.JFrame;

public class Main {
  public static void main(String[] argv) throws Exception{
    JFileChooser chooser = new JFileChooser();
    File f = new File(new File("filename.txt").getCanonicalPath());
    
    chooser.resetChoosableFileFilters();
    chooser.showDialog(new JFrame(""), null);
    File curFile = chooser.getSelectedFile();
  }
}