2

自从它现在工作以来改变了项目。有点。图像仍然没有改变。

package icnon;

import javax.imageio.*;
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;

public class FrameIconExample extends JFrame implements ActionListener {

    JLabel j;
    JPanel p, l, k;
    JButton picOne, picTwo;
    Container cPane;

    public FrameIconExample() {
        JButton picOne = new JButton("picOne");
        JButton picTwo = new JButton("picTwo");
        picOne.setName("picOne");
        picTwo.setName("picTwo");

        picOne.addActionListener(this);
        picTwo.addActionListener(this);

        p = new JPanel(new GridLayout(2, 1));
        l = new JPanel(new FlowLayout());
        k = new JPanel(new FlowLayout());

        cPane = getContentPane();

        j = new JLabel(new ImageIcon(
            "../meet/src/images/beautiful-closeup-portrait-photography.jpg"));

        l.add(j);
        k.add(picOne);
        k.add(picTwo);
        p.add(l);
        p.add(k);

        add(p);
    }

    public static void main(String[] args) {
        FrameIconExample frame = new FrameIconExample();
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        frame.setSize(new Dimension(300, 800));
        frame.setTitle("Frame Icon Example");

        // Display the form
        frame.setVisible(true);
    }

    @Override
    public void actionPerformed(ActionEvent e) {
        JButton temp = (JButton) e.getSource();
        String src = "../meet/src/images/Majken Kruse portrait - john.jpg";

        //System.out.println(src + " " + temp.getName());

        if (temp.getName().equalsIgnoreCase("picOne")) {
            try {

                l.hide();

                try {

                    src = "../meet/src/images/beautiful-closeup-portrait-photography.jpg";
                    System.out.println(src + " " + temp.getName());
                    Icon img;
                    j = new JLabel(new ImageIcon(src));

                    l.add(j);

                    System.out.println("1");
                } catch (Exception q) {
                    q.printStackTrace();
                }

                if (temp.getName().equalsIgnoreCase("picTwo")) {
                    src = "../icontest/images/Majken Kruse portrait - john.jpg";
                    System.out.println(src + " " + temp.getName());
                    Icon img;
                    j = new JLabel(new ImageIcon(src));
                    l.add(j);
                    System.out.println("2");
                }
            } catch (Exception x) {
                x.printStackTrace();
            }
        }
    }
}

原谅不好的缩进。我很确定方法 l.add(j); 是图像没有改变的原因。

任何想法应该是什么?

4

3 回答 3

6

注意:此答案是针对问题的修订 1 和 2 作出的。

这不是 Awt 错误,而是 NullPointerException。

您的字段 l 为空,因为在您认为创建它的那一刻,您实际上用局部变量掩盖了它。

JPanel p = new JPanel(new GridLayout(2, 1));
JPanel l = new JPanel(new FlowLayout());
JPanel k = new JPanel(new FlowLayout());

应该:

p = new JPanel(new GridLayout(2, 1));
l = new JPanel(new FlowLayout());
k = new JPanel(new FlowLayout());

使用堆栈跟踪再次读取错误。它告诉你哪一行是问题,错误的类型告诉你发生了什么,在这种情况下。

于 2010-05-04T12:26:31.883 回答
2

您遇到的问题是您声明了一个全局JPanelnamed l,但是当您JPanel在构造函数中实例化 s 时,您声明并分配了一个局部范围JPanelnamed l。当您尝试在 中添加组件时actionPerformed,您正在尝试将其添加到null全局变量中。

于 2010-05-04T12:26:51.167 回答
1

我假设您没有设置正确的图像位置。您确定图像位于您指定的确切位置吗?你用的是什么IDE?如果您使用 Eclipse,刷新您的项目可能会有所帮助。

于 2010-05-04T12:25:40.327 回答