2

我正在尝试将图标添加到工具栏,但最好的放置位置是什么?我的桌面或者我应该在项目文件中创建一个新文件还是添加所有图片,因为它没有显示,这是我的代码:

 JToolBar toolBar = new JToolBar();
     String[] iconFiles = {"pen-icon","",""};
     String[] buttonLabels = {"New","Open","Save"};
     icon = new ImageIcon[iconFiles.length];
     Obutton = new JButton[buttonLabels.length];

     for (int i = 0; i < buttonLabels.length; ++i) {
      icon[i] = new ImageIcon(iconFiles[i]);
      Obutton[i] = new JButton(icon[i]);
      Obutton[i].setToolTipText(buttonLabels[i]);
      if (i == 3)
        toolBar.addSeparator();
         toolBar.add(Obutton[i]);
    }
4

2 回答 2

6

这种类型的资源通常最好包含在应用程序上下文中(例如 jar 文件)。这减少了有人篡改它的机会,因为解压缩、修改和重新打包 jar 文件然后简单地替换文件要花费更多时间。当它变得独立时,它还减少了您需要分发的内容。

这些被称为嵌入式资源。

将它们放在此上下文中的位置取决于您,许多人使用“资源”文件夹来存储这些类型的文件,但有时,您可能想要一些与类上下文相关的东西。由你决定。

这会引发加载这些资源的问题,因为您不能再使用File.

通常,您可以使用Class#getResource(String), 返回 aURLClass#getResourceAsStream(String)返回 a InputStream。这为您提供了加载这些嵌入式资源所需的一切。

ImageIcon(String)期望值是文件引用,这意味着它不适用于嵌入式资源,但ImageIcon提供了一个将 aURL作为引用的构造函数,这意味着您需要使用

icon[i] = new ImageIcon(getClass().getResource(iconFiles[i]));

加载您的图像。

根据您的示例,图像需要与类相关(即在与您的包结构相同的目录结构中)。如何实现这一点取决于您的开发环境。

请记住,您还可以getResource在某些上下文中指定相对路径甚至是绝对路径。绝对路径基本在搜索资源时将类路径的元素作为指定路径的前缀。

于 2014-01-30T03:11:40.387 回答
6

我会使用一个Action. 这是AbstractAction构造函数

  • public AbstractAction(String name, Icon icon)- 创建一个具有指定名称和小图标的动作。

    参数:
    name - 动作的名称(Action.NAME);null 值被忽略
    icon - 动作的小图标 (Action.SMALL_ICON);忽略 null 值

使用 an 的好处Action是可以重复用于具有类似目的的组件。所以说你想在工具栏中有一个图标按钮来打开一个文件,并且还有一个JMenuItem可以JMenu打开文件的按钮。它们可以共享相同的动作,从而共享相同的图标、动作命令和要执行的动作。

Action action = new AbstractAction("someActionCommand", someIcon) {
    @Override
    public void actionPerformed(ActionEvent e) {
        // do something.
    }
};

toolbar.add(action);

上面会自动为您放置图标,而不是字符串。在 aJMenuItem中,它会同时放置字符串和图标。

然后只需添加Action到工具栏。


在如何使用操作中查看更多信息


正如@MadProgrammer 指出的那样,要回答您真正的问题,您应该将图像加载为嵌入式资源,使用

 ImageIcon icon = new ImageIcon(MyClass.class.getResource("/resources/images/image.png"));

/resources/images目录在哪里src,并getResource()返回一个 URL。构建后,您的 IDE 应为您将文件复制到类路径中。

 ProjectRoot
           src
               resources
                       images
                             image.png

您会发现,当使用文件系统中的文件时,在部署时将无法正常工作


这是一个示例,其中 theJMenuItemJToolBar按钮共享相同的操作。请注意,JToolBar 所要做的就是添加Action,我不需要为它创建一个按钮。JToolBar自动使其成为按钮,无需操作命令

我从下面的文件结构中使用这个“open.gif”并使用

ImageIcon icon = new ImageIcon(
            ActionTest.class.getResource("/resources/image/open.gif"));

在此处输入图像描述

这是结果

在此处输入图像描述

这是代码。享受!

import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.event.ActionEvent;
import javax.swing.AbstractAction;
import javax.swing.Action;
import javax.swing.Box;
import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JMenuItem;
import javax.swing.JToolBar;
import javax.swing.SwingUtilities;
import javax.swing.border.LineBorder;

public class ActionTest {

    public ActionTest() {
        ImageIcon openIcon = new ImageIcon(
                ActionTest.class.getResource("/resources/image/open.gif"));
        ImageIcon saveIcon = new ImageIcon(
                ActionTest.class.getResource("/resources/image/save.gif"));
        ImageIcon newIcon = new ImageIcon(
                ActionTest.class.getResource("/resources/image/new.gif"));

        Action openAction = new AbstractAction("Open", openIcon) {
            @Override
            public void actionPerformed(ActionEvent e) {
                System.out.println("Open File");
            }
        };
        Action saveAction = new AbstractAction("Save", saveIcon) {
            @Override
            public void actionPerformed(ActionEvent e) {
                System.out.println("Save File");
            }
        };
        Action newAction = new AbstractAction("New", newIcon) {
            @Override
            public void actionPerformed(ActionEvent e) {
                System.out.println("New File");
            }
        };

        JMenuItem openMenuItem = new JMenuItem(openAction);
        JMenuItem saveMenuItem = new JMenuItem(saveAction);
        JMenuItem newMenuItem = new JMenuItem(newAction);

        JMenuBar menuBar = new JMenuBar();
        JMenu fileMenu = new JMenu("File");
        fileMenu.add(openMenuItem);
        fileMenu.add(saveMenuItem);
        fileMenu.add(newMenuItem);
        menuBar.add(fileMenu);

        JToolBar toolBar = new JToolBar();
        toolBar.add(Box.createHorizontalGlue());
        toolBar.setBorder(new LineBorder(Color.LIGHT_GRAY, 1));
        toolBar.add(newAction);
        toolBar.add(openAction);
        toolBar.add(saveAction);

        JFrame frame = new JFrame("Toolbar and Menu Test");
        frame.setJMenuBar(menuBar);
        frame.add(toolBar, BorderLayout.PAGE_START);
        frame.pack();
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setLocationByPlatform(true);
        frame.setVisible(true);

    }

    public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
            public void run() {
                new ActionTest();
            }
        });
    }
}
于 2014-01-30T03:13:13.497 回答