Java Swing Tutorial - Java JFileChooser .getFileSelectionMode ()








Syntax

JFileChooser.getFileSelectionMode() has the following syntax.

public int getFileSelectionMode()

Example

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

//from w  w  w .  java  2s .  c o m
import java.awt.BorderLayout;

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

public class Main{

  public static void main(String[] a) {
    JFrame frame = new JFrame("JFileChooser Popup");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    JFileChooser fileChooser = new JFileChooser(".");
    
    int mode = fileChooser.getFileSelectionMode();
    frame.add(fileChooser, BorderLayout.CENTER);

    frame.pack();
    frame.setVisible(true);
  }
}