List of usage examples for javax.swing JFileChooser getDialogType
public int getDialogType()
From source file:Main.java
public static void main(String[] a) { JFrame frame = new JFrame("JFileChooser Popup"); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); JFileChooser fileChooser = new JFileChooser("."); int type = fileChooser.getDialogType(); frame.add(fileChooser, BorderLayout.CENTER); frame.pack();// ww w. j a v a 2 s . com frame.setVisible(true); }