显示ImageIcon

时间:2012-04-10 07:28:07

标签: java swing paint imageicon

我正在尝试在JPanel上显示图片。我正在使用ImageIcon来渲染图像,并且图像与类文件位于同一目录中。但是,图像未显示,并且没有发生错误。任何人都可以协助解决我的代码有什么问题......

package ev;

import java.awt.Graphics;
import javax.swing.ImageIcon;
import javax.swing.JPanel;

public class Image extends JPanel {

    ImageIcon image = new ImageIcon("peanut.jpg");
    int x = 10;
    int y = 10;

    public void paintComponent(Graphics g) {
        super.paintComponent(g);
        image.paintIcon(this, g, x, y);
    }
}

2 个答案:

答案 0 :(得分:4)

这是程序员之间常见的混淆。该 getClass().getResource(path)从类路径加载资源。

ImageIcon image = new ImageIcon("peanut.jpg");

如果我们只提供图像文件的名称,那么Java就是 在当前的工作目录中寻找它。 如果您使用的是NetBeans,则CWD是项目目录。您 可以通过以下调用在运行时找出CWD:

System.out.println(new File("").getAbsolutePath());

以下是一个代码示例,您可以自行测试。

package com.zetcode;

import java.awt.Dimension;
import java.awt.Graphics;
import java.io.File;
import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.SwingUtilities;

class DrawingPanel extends JPanel {

    private ImageIcon icon;

    public DrawingPanel() {

        loadImage();
        int w = icon.getIconWidth();
        int h = icon.getIconHeight();
        setPreferredSize(new Dimension(w, h));

    }

    private void loadImage() {

        icon = new ImageIcon("book.jpg");
    }

    @Override
    public void paintComponent(Graphics g) {
        super.paintComponent(g);

        icon.paintIcon(this, g, 0, 0);
    }

}

public class ImageIconExample extends JFrame {

    public ImageIconExample() {

        initUI();
    }

    private void initUI() {

        DrawingPanel dpnl = new DrawingPanel();
        add(dpnl);

        // System.out.println(new File("").getAbsolutePath());         

        pack();
        setTitle("Image");
        setLocationRelativeTo(null);
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);        
    }

    public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {

            @Override
            public void run() {                
                JFrame ex = new ImageIconExample();
                ex.setVisible(true);                
            }
        });
    }
}

下图显示了book.jpg的放置位置 NetBeans中的图像,如果我们只提供图像名称 到ImageIcon构造函数。

Location of the image in NetBeans project

我们从命令行拥有相同的程序。我们在ImageIconExample中 目录。

$ pwd
/home/vronskij/prog/swing/ImageIconExample

$ tree
.
├── book.jpg
└── com
    └── zetcode
        ├── DrawingPanel.class
        ├── ImageIconExample$1.class
        ├── ImageIconExample.class
        └── ImageIconExample.java

2 directories, 5 files

使用以下命令运行程序:

$ ~/bin/jdk1.7.0_45/bin/java com.zetcode.ImageIconExample

您可以在我的Displaying image in Java教程中找到更多信息。

答案 1 :(得分:2)

你应该使用

ImageIcon image = new ImageIcon(this.getClass()
                .getResource("org/myproject/mypackage/peanut.jpg"));