[Java swing] JToolBar trong Java

JToolBar là một thanh dài gồm các nút với biểu tượng tương ứng thường nằm dưới menu, giống như thanh công cụ trong word, excel có các nút new, open, save, …

JToolBar trong java

Chúng ta sẽ đi thực hiện chương trình giống như hình trên, gồm 3 nút new, open, save trên thanh toolbar. Khi click vào các nút thì JTextArea bên dưới sẽ hiển thị sự kiện tương ứng.

code by nguyenvanquan7826 - DemoJToolBar.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
137
138
139
140
141
142
143
package nguyenvanquan7826.JToolBar;
 
import java.awt.BorderLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.net.URL;
 
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
import javax.swing.JToolBar;
 
/**
 * --------------------- @author nguyenvanquan7826 ---------------------
 * ------------------ website: cachhoc.net -------------------
 */
public class DemoJToolBar extends JFrame implements ActionListener {
 
    public static final String NEW = "new";
    public static final String OPEN = "open";
    public static final String SAVE = "save";
 
    public static String iconNew = "iconNew.png";
    public static String iconOpen = "iconOpen.png";
    public static String iconSave = "iconSave.png";
 
    private JTextArea ta;
 
    public DemoJToolBar() {
        setJMenuBar(createMenuBar());
        addContent();
        setDisplay();
    }
 
    /**
     * set display for JFrame with title is "Demo JToolBar"
     */
    private void setDisplay() {
        setTitle("Demo JToolBar");
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        pack();
        setLocationRelativeTo(null);
        setVisible(true);
    }
 
    /**
     * demo menu
     */
    private JMenuBar createMenuBar() {
        JMenuBar mb = new JMenuBar();
        mb.add(new JMenu("File"));
        mb.add(new JMenu("Help"));
        return mb;
    }
 
    /**
     * add content of JFrame, it contain a JToolBar and a JTextArea to display
     * event on toolbar
     */
    private void addContent() {
        setLayout(new BorderLayout());
        add(createToolBar(), BorderLayout.PAGE_START);
        add(new JScrollPane(ta = createTextArea(15, 30)), BorderLayout.CENTER);
    }
 
    /**
     * create a toolbar
     */
    private JToolBar createToolBar() {
        JToolBar tb = new JToolBar();
        tb.add(createButton(iconNew, "New", NEW, "Create a new file"));
        tb.add(createButton(iconOpen, "Open", OPEN, "Open a file"));
        tb.add(createButton(iconSave, "Save", SAVE, "Save this file"));
        return tb;
    }
 
    /**
     * create a JTextArea to display events
     */
    private JTextArea createTextArea(int row, int col) {
        JTextArea ta = new JTextArea(row, col);
        ta.setWrapStyleWord(true);
        ta.setLineWrap(true);
        // ta.setEditable(false);
        return ta;
    }
 
    /**
     * create a Button, it has a icon, tex (if not found icon), actionCommand
     * and tool tip text
     */
    private JButton createButton(String iconLink, String text, String command,
            String toolTip) {
        JButton btn = new JButton();
        btn.setActionCommand(command);
        btn.setToolTipText(toolTip);
 
        ImageIcon icon = createIcon(iconLink);
        if (icon == null) {
            btn.setText(text);
        } else {
            btn.setIcon(icon);
        }
        btn.setActionCommand(command);
        btn.addActionListener(this);
        return btn;
    }
 
    /**
     * create icon
     */
    private ImageIcon createIcon(String iconLink) {
        URL imageURL = JToolBarOracle.class.getResource(iconLink);
        if (imageURL != null) {
            return new ImageIcon(imageURL);
        } else {
            System.out.println("image " + iconLink + " not found");
            return null;
        }
    }
 
    @Override
    public void actionPerformed(ActionEvent e) {
        String command = e.getActionCommand();
        String action = "null";
        if (command.equals(NEW)) {
            action = "new file";
        } else if (command.equals(OPEN)) {
            action = "open file";
        } else if (command.equals(SAVE)) {
            action = "save file";
        }
        ta.append(action + "\n");
    }
 
    public static void main(String[] args) {
        new DemoJToolBar();
    }
}

Thanh ToolBar này các bạn có thể đưa chuột vào đầu thanh (đoạn có nhiều dấu chấm) để kéo thả đặt nó ở vị trí ngang hoặc dọc. Nếu muốn cố định nó bạn dùng phương thức toolBar.setFloatable(false);, ngoài ra bạn có thể thêm các đối tượng khác như JTextField,… để làm thanh tìm kiếm chẳng hạn.

Các icon new, open, save bạn để cùng pakage như sau:

jtoolbar in java

Đọc thêm: class JToolBar, user JToolBar, java swing