Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

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 mu = fileChooser.getApproveButtonMnemonic();

        frame.add(fileChooser, BorderLayout.CENTER);

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