[Java swing] JFileChooser in Java

JFileChooser in Java is an object display frame allows you to open or save the file. It's like this:

open and save file in java

Now we will go as a simple example of open and save files.

Open and save files in java

001
002
003
004
005
006
007
008
009
010
011
012
013
014
015
016
017
018
019
020
021
022
023
024
025
026
027
028
029
030
031
032
033
034
035
036
037
038
039
040
041
042
043
044
045
046
047
048
049
050
051
052
053
054
055
056
057
058
059
060
061
062
063
064
065
066
067
068
069
070
071
072
073
074
075
076
077
078
079
080
081
082
083
084
085
086
087
088
089
090
091
092
093
094
095
096
097
098
099
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
package nguyenvanquan7826.JFileChooser;
 
import java.awt.BorderLayout;
import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
 
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JFileChooser;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
 
/**
 * --------------------- @author nguyenvanquan7826 ---------------------
 * ------------------ website: cachhoc.net -------------------
 * ---------- date: Jul 29, 2014 - filename: DemoJFileChooser.java ----------
 */
public class DemoJFileChooser extends JFrame implements ActionListener {
 
    public static String iconOpen = "iconOpen.png";
    public static String iconSave = "iconSave.png";
 
    private JTextArea taLog;
    private JButton btnOpen, btnSave;
    private JFileChooser fc = new JFileChooser();
 
    public DemoJFileChooser() {
        addContent();
        setDisplay();
    }
 
    /**
     * set display for JFrame
     */
    private void setDisplay() {
        setTitle("Demo JFileChooser");
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        pack();
        setLocationRelativeTo(null);
        setVisible(true);
    }
 
    /**
     * add content for JFrame, JFrame contain a ButtonPane (contain buttons) and
     * a JTextArea to show something you work
     */
    private void addContent() {
        setLayout(new BorderLayout());
        add(createButtonPanel(), BorderLayout.PAGE_START);
        add(new JScrollPane(taLog = createTextArea(15, 30)),
                BorderLayout.CENTER);
    }
 
    /**
     * create a JPanel contain 2 button (open and save) on TOP of JFrame
     */
    private JPanel createButtonPanel() {
        JPanel panel = new JPanel(new FlowLayout());
        panel.add(btnOpen = createButton("Open file", iconOpen));
        panel.add(btnSave = createButton("Save file", iconSave));
        return panel;
    }
 
    /**
     * create JTextArea
     */
    private JTextArea createTextArea(int row, int col) {
        JTextArea ta = new JTextArea(row, col);
        ta.setWrapStyleWord(true);
        ta.setLineWrap(true);
        return ta;
    }
 
    /**
     * create a JButton with text and icon and add Action for it
     */
    private JButton createButton(String text, String iconLink) {
        ImageIcon icon = createImageIcon(iconLink);
        JButton btn = new JButton(text, icon);
        btn.addActionListener(this);
        return btn;
    }
 
    /**
     * get a icon via link to icon
     */
    private ImageIcon createImageIcon(String iconLink) {
        ImageIcon icon = new ImageIcon(getClass().getResource(iconLink));
        return icon;
    }
 
    /**
     * Handle when you open a file
     */
    private void openFile() {
        int select = fc.showOpenDialog(this);
        if (select == JFileChooser.APPROVE_OPTION) {
            taLog.append("You open " + fc.getSelectedFile().getName());
        } else {
            taLog.append("You cancelled open!");
        }
        taLog.append("\n");
    }
 
    /**
     * Handle when you save a file
     */
    private void saveFile() {
        int select = fc.showSaveDialog(this);
        if (select == JFileChooser.APPROVE_OPTION) {
            taLog.append("You save " + fc.getSelectedFile().getName());
        } else {
            taLog.append("You cancelled save!");
        }
        taLog.append("\n");
    }
 
    @Override
    public void actionPerformed(ActionEvent e) {
        if (e.getSource() == btnOpen) {
            openFile();
            return;
        }
        if (e.getSource() == btnSave) {
            saveFile();
            return;
        }
    }
 
    public static void main(String[] args) {
        new DemoJFileChooser();
    }
}

In the code above you noticed 2 displayed in order to open and save files are different.

int select = fc.showOpenDialog(this);
int select = fc.showSaveDialog(this);

Next argument JFileChooser.APPROVE_OPTION show that you have accepted “Open” or “Save” file.
The icon save and open you put in the same package as follows:

Open and save files in java

The above example only describes how to use JFileChooser, job Read and write text file or reading object you do offline.

Read more: use JFileChooser, class JFileChooser, java swing