14. 77. 5. Determining If the Approve or Cancel Button Was Clicked in a JFileChooser Dialog
import javax.swing.JFileChooser;
public class Main { public static void main(String[] argv) {
JFileChooser chooser = new JFileChooser(); int result = chooser.showOpenDialog(null); switch (result) { case JFileChooser.APPROVE_OPTION:
System.out.println("Approve (Open or Save) was clicked"); break; case JFileChooser.CANCEL_OPTION:
System.out.println("Cancel or the close-dialog icon was clicked"); break; case JFileChooser.ERROR_OPTION:
System.out.println("Error"); break;
}
}
}