Home How to use JFileChooser properly
Post
Cancel

How to use JFileChooser properly

In this tutorial, I try to explain you how to use JFileChooser API to make it easy for the user to choose a file.


JFileChooser select file to open


Create new class

First, you need to create a new class file named MyWindow.java contains the following lines of code:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import java.awt.Container;
import java.awt.Dimension;
import java.awt.FlowLayout;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JTextField;

public class MyWindow extends JFrame {

    public MyWindow() {
        initComponents();
    }

    private void initComponents() {
        setSize(300, 60);
        setTitle("My Window");
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        Container c = getContentPane();
        c.setLayout(new FlowLayout());
    }

    public static void main(String[] args) {
        MyWindow window = new MyWindow();
        window.setVisible(true);
    }
}

if you run the previous lines of java , you will get a new empty window titled: “My Window” with size: (300, 60)

Add browse button and path textfiled

now, we have created a new window and need to add a new button named “Browse”, when you press this button you will get the filechooser window. after choosing the file and approve selection, the full path of the selected file should be on the textfild

Add JButton (Browse button)

the code should be as the following:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
    ...
    private JButton btn ;
    ...
    private void initComponents() {
        setSize(300, 60);
        setTitle("My Window");
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        Container c = getContentPane();
        c.setLayout(new FlowLayout());
        btn = new JButton("Browse");
        btn.setPreferredSize(new Dimension(100, 20));
        c.add(btn);
    }

Add the JTextField

In this textfield we will put the full path of the selected file by the user using JFileChooser

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
    ...
    private JButton btn ;
    private JTextField textField;
    ...
    private void initComponents() {
        setSize(300, 60);
        setTitle("My Window");
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        Container c = getContentPane();
        c.setLayout(new FlowLayout());
        btn = new JButton("Browse");
        btn.setPreferredSize(new Dimension(100, 20));
        c.add(btn);
        textField = new JTextField();
        textField.setPreferredSize(new Dimension(160, 20));
        c.add(textField);

    }

You should get something like :

tuto

Add action performed to our button:

Now, we need to add the action performed to the browse button, the application must show the filechooser after the user click.

first, we will add two methods:

1
2
3
private void btnBrowseActionPerformed(java.awt.event.ActionEvent evt) {
  textField.setText("button pressed");
}

the second method is where we involve the event to the browse button

1
2
3
4
5
6
7
8
private void simpleMethod() {
  btn.addActionListener(new java.awt.event.ActionListener() {
    @Override
    public void actionPerformed(java.awt.event.ActionEvent evt) {
      btnBrowseActionPerformed(evt);
    }
  });
}

Now you have window with button and text field, when you click on button the program print "Button Pressed" on the text field.

the full code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import java.awt.Container;
import java.awt.Dimension;
import java.awt.FlowLayout;
import javax.swing.JButton;
import javax.swing.JFileChooser;
import javax.swing.JFrame;
import javax.swing.JTextField;

/**
 *
 * @author cyounes
 */
public class MyWindow extends JFrame {

    private JButton btn;
    private JTextField textField;
    private JFileChooser fc;

    public MyWindow() {
        initComponents();
        simpleMethod();
    }

    private void initComponents() {
        setSize(300, 60);
        setTitle("My Window");
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        Container c = getContentPane();
        c.setLayout(new FlowLayout());
        btn = new JButton("Browse");
        btn.setPreferredSize(new Dimension(100, 20));
        c.add(btn);
        textField = new JTextField();
        textField.setPreferredSize(new Dimension(160, 20));
        c.add(textField);
    }

    private void simpleMethod() {
        btn.addActionListener(new java.awt.event.ActionListener() {
            @Override
            public void actionPerformed(java.awt.event.ActionEvent evt) {
                btnBrowseActionPerformed(evt);
            }
        });
    }

    private void btnBrowseActionPerformed(java.awt.event.ActionEvent evt) {
        textField.setText("Button Pressed");
    }

    public static void main(String[] args) {
        MyWindow window = new MyWindow();
        window.setVisible(true);
    }
}

Button pressed

Now, after get the action performed works correctly, we need just to edit the method that put the text on the text field, to get the file chooser opened after clicking the browse button.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
    private void btnBrowseActionPerformed(java.awt.event.ActionEvent evt) {
        if (fc == null) {
            fc = new JFileChooser("$HOME");
        }
        // Show the file chooser and get the value returned.
        int returnVal = fc.showOpenDialog(this);

        // Process the results.
        // Case 1: the user selects file and clicks on open button
        if (returnVal == JFileChooser.APPROVE_OPTION) {
            textField.setText(fc.getSelectedFile().getPath());
        }
        // Case 2: the user clicks on cancel
        else {
            textField.setText("");
        }

        // Reset the file chooser for the next time it's shown.
        fc.setSelectedFile(null);

    }

After clicking browse button:

JFileChooser

after selecting file:

file selected

now you get your JFileChooser works correctly. The full code on gist:

Using Git:
1
git clone git://gist.github.com/4144967.git
Using Curl:
1
curl -O https://raw.github.com/gist/4144967/f2be051ef0d66a59fa315a852bb387acf89fe2da/MyWindow.java
Copy:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
import java.awt.Container;
import java.awt.Dimension;
import java.awt.FlowLayout;
import javax.swing.JButton;
import javax.swing.JFileChooser;
import javax.swing.JFrame;
import javax.swing.JTextField;


public class MyWindow extends JFrame {

    private JButton btn ;
    private JTextField textField;
    private JFileChooser fc;

    public MyWindow() {
        initComponents();
        simpleMethod();
    }

    private void initComponents() {
        setSize(300, 60);
        setTitle("My Window");
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        Container c = getContentPane();
        c.setLayout(new FlowLayout());
        btn = new JButton("Browse");
        btn.setPreferredSize(new Dimension(100, 20));
        c.add(btn);
        textField = new JTextField();
        textField.setPreferredSize(new Dimension(160, 20));
        c.add(textField);
    }

    private void simpleMethod() {
        btn.addActionListener(new java.awt.event.ActionListener() {
            @Override
            public void actionPerformed(java.awt.event.ActionEvent evt) {
                btnBrowseActionPerformed(evt);
            }
        });
    }

    private void btnBrowseActionPerformed(java.awt.event.ActionEvent evt) {
        if (fc == null) {
            fc = new JFileChooser(".");
        }

        // Show it.
        int returnVal = fc.showOpenDialog(this);

        // Process the results.
        if (returnVal == JFileChooser.APPROVE_OPTION) {
            textField.setText(fc.getSelectedFile().getPath());
        } else {
            textField.setText("");
        }

        // Reset the file chooser for the next time it's shown.
        fc.setSelectedFile(null);

    }
    public static void main(String[] args) {
        MyWindow window = new MyWindow();
        window.setVisible(true);
    }
}

Next Tutorial No more tutorials in Java

Since 2012 I’m not developping in Java anymore 😟

In the next tutorial, you will see how to:

  • Add FileFilter , to speciy which extensions you want to open, and prevent to select files that have other extensions.
  • Use JFileChooser to open/save file.
  • Preview selected image on file chooser before opening.
This post is licensed under CC BY-NC-SA 4.0 by the author.

Basicmenu Library

alsac Command Line Sound Controller