gpt4 book ai didi

Java 单选按钮更改另一个面板中的按钮文本

转载 作者:行者123 更新时间:2023-11-30 04:08:59 26 4
gpt4 key购买 nike

我正在为我的编程 II 类(class)制作一个 Java 日历,我需要一些帮助。我制作了日历,使其具有 6 x 7 的按钮网格,并创建了一个方法来更改按钮文本以匹配所选的月份(通过单选按钮选择)。它适用于默认选择的月份,但当选择新的单选按钮时,我无法让它更新用户界面。我的 formatCalendar 方法以及我的日历按钮位于扩展 JPanel 的 CalendarPanel 类中,但我的单选按钮位于也扩展 JPanel 的 MonthRadioButtonPanel 中。我知道单选按钮上的 Action 监听器可以工作,因为我已经使用简单的 System.out.println 对其进行了测试...谢谢,非常感谢任何帮助!

我的单选按钮是在 MonthRadioButtonPanel() 构造函数中创建的。

JRadioButton[] monthRadioButton;
RadioButtonListener listener = new RadioButtonListener();

public MonthRadioButtonPanel()
{
monthRadioButton = new JRadioButton[12];
ButtonGroup monthSelect = new ButtonGroup();

this.setLayout(new GridLayout(2,6));

//creates radio buttons with labels and default selected value
monthRadioButton[0] = new JRadioButton("January",true);
monthRadioButton[1] = new JRadioButton("February",false);
monthRadioButton[2] = new JRadioButton("March",false);
monthRadioButton[3] = new JRadioButton("April",false);
monthRadioButton[4] = new JRadioButton("May",false);
monthRadioButton[5] = new JRadioButton("June",false);
monthRadioButton[6] = new JRadioButton("July",false);
monthRadioButton[7] = new JRadioButton("August",false);
monthRadioButton[8] = new JRadioButton("September",false);
monthRadioButton[9] = new JRadioButton("October",false);
monthRadioButton[10] = new JRadioButton("November",false);
monthRadioButton[11] = new JRadioButton("December",false);

for (int i = 0; i < monthRadioButton.length; i++)
{
//adds radio buttons and an action listener to each
monthSelect.add(monthRadioButton[i]);
monthRadioButton[i].addActionListener(listener);
monthRadioButton[i].setActionCommand(monthRadioButton[i].getText());
this.add(monthRadioButton[i]);
}

}

我正在使用内部类来收听单选按钮。方法 formatCalendar(int nDays, int firstDayOfWeek) 位于 CalendarPanel 类中,它根据该月的天数和该月第一天的一周第一天(例如,使用 int 的周一、周二)正确格式化日历表示)。方法 getDaysInMonth() 和 getFirstDayOfWeek() 位于 MonthRadioButtonPanel 中,用于查找所选单选按钮所在月份中的天数以及该月中一周的第一天。这对于默认选择(在本例中为一月)效果很好,但当选择新的单选按钮时,UI 不会刷新。这是我的内部 RadioButtonListener 类。

class RadioButtonListener implements ActionListener
{
//listens to radio buttons and reformats calendar
public void actionPerformed(ActionEvent e)
{
//this is just a test to see if the listeners are working correctly; it works
System.out.println(e.getActionCommand());

//actual code trying to reformat CalendarPanel when a radio button is clicked
CalendarPanel cal = new CalendarPanel();
cal.formatCalendar(getDaysInMonth(), getFirstDayOfWeek());
cal.revalidate();
cal.repaint();

}

}

编辑

所以我完全按照@Hovercraft Full Of Eels的建议更改了我的RadioButtonListener,所以它看起来像:

class RadioButtonListener implements ActionListener
{
private CalendarPanel cal;

public RadioButtonListener()
{

}

public RadioButtonListener(CalendarPanel cal) {
this.cal = cal;
}

public void actionPerformed(ActionEvent e)
{
cal.formatCalendar(getDaysInMonth(), getFirstDayOfWeek());
cal.revalidate();
cal.repaint();
}
}

}

我的 Frame 类构造函数编译得很好,但是当我单击单选按钮时,它会抛出空指针异常。

public class Frame extends JFrame
{

//creates frame with added panels
public Frame()
{
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setTitle("Calendar");
this.setSize(900,400);
this.setLayout(new BorderLayout());

MonthRadioButtonPanel mon = new MonthRadioButtonPanel();
this.add(mon, BorderLayout.SOUTH);

CalendarPanel cal = new CalendarPanel();

MonthRadioButtonPanel.RadioButtonListener list = mon.new RadioButtonListener(cal);

this.add(cal, BorderLayout.WEST);
this.add(new TitlePanel(), BorderLayout.NORTH);

this.setVisible(true);

}

}

最佳答案

您正在对错误的 CalendarPanel 对象进行更改,该对象是专门在监听器中创建的对象。同时,显示的 CalendarPanel 对象对这些更改一无所知。

class RadioButtonListener implements ActionListener
{
public void actionPerformed(ActionEvent e)
{
// the line below creates a *new* CalendarPanel object
// one completely unrelated to the displayed CalendarPanel
CalendarPanel cal = new CalendarPanel();
cal.formatCalendar(getDaysInMonth(), getFirstDayOfWeek());
cal.revalidate();
cal.repaint();
}
}

____________________________________>

解决方案是将显示的 CalendarPanel 对象的引用传递给您的监听器,并对其进行更改。

class RadioButtonListener implements ActionListener
{
private CalendarPanel cal;

public RadioButtonListener(CalendarPanel cal) {
this.cal = cal;
}
public void actionPerformed(ActionEvent e)
{
cal.formatCalendar(getDaysInMonth(), getFirstDayOfWeek());
cal.revalidate();
cal.repaint();
}
}

创建上述监听器时,您需要传递对有效显示的 CalendarPanel 对象的引用以允许其工作。

<小时/>

编辑
您在评论中指出:

Okay, I did that and instantiated it in my Frame constructor (which also creates and adds my other panels) but it creates a null pointer exception.

如果您的问题有任何重大更改,请通过在当前问题的底部发布新代码和新描述来编辑您的问题(就像我现在所做的那样)。如果可以避免更改原始问题或代码,请勿更改原始问题或代码,以免使您的答案无效。

现在讨论您的问题:我只能猜测,因为我们没有看到您更改的代码,但是您是否在将有效的 CalendarPlayer 分配给之前将 CalendarPlayer 变量传递到 RadioButtonListener 构造函数中它的变量。如果是这样,那就可以解释这一点,因为您将把 null 传递到 RadioButtonListener 构造函数中。解决方案是在调用 RadioButtonListener 构造函数之前先将 CalendarPlayer 分配给其变量。

<小时/>

编辑2

您可能会创建两个 RadioButtonListener,一个使用默认构造函数,一个不带参数,另一个使用参数。摆脱那个默认的构造函数,同样是没有参数的构造函数,不要创建其中两个对象(这没有意义,让我摸不着头脑为什么要这样做)并努力找出一种方法来获取正确引用听众。如果您思考一下,您应该能够弄清楚这一点,而不仅仅是从这里复制并粘贴代码。

关于Java 单选按钮更改另一个面板中的按钮文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20084651/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com