Java编程挑战:创建类似GUI计算器的界面

时间:2012-12-28 22:21:29

标签: java user-interface event-handling append textfield

这可能是一个基本问题。但是,我已经完成了阅读绝对初学者Java编程的第7章,并已经接近挑战部分。我无法获得明确的按钮来应对挑战问题。

问题是:

  

创建一个数字小键盘,使用按钮更新不可编辑的TextField,方法是将单击的数字附加到当前数字的末尾。使用BorderLayout作为框架。在BorderLayout.NORTH,放置TextField。在中心,创建一个面板,使用GridLayout在三乘三网格中布置按钮1到9。在BorderLayout.SOUTH中,创建另一个具有零键的Panel以及一个“清除”键,用于删除TextField中的当前数字。“

我认为我的主要问题是在TextArea追加方法中。我知道我应该使用TextField,但根据我所做的研究,似乎不可能在TextField中附加。

这个问题的答案可能有助于许多新的Java程序员理解基本的GUI和事件处理。

import java.awt.*;
import java.awt.event.*;

public class CalcFacade extends GUIFrame
                                    implements ActionListener, TextListener {

TextField tf;
TextArea ta;
Panel p1, p2;
Label clear;
Button b1, b2, b3, b4, b5, b6, b7, b8, b9, c, b0;
public CalcFacade() {
    super("Calculator Facade");
    setLayout(new BorderLayout());

Button b1 = new Button("1");
b1.addActionListener(this);
Button b2 = new Button("2");
b2.addActionListener(this);
Button b3 = new Button("3");
b3.addActionListener(this);
Button b4 = new Button("4");
b4.addActionListener(this);
Button b5 = new Button("5");
b5.addActionListener(this);
Button b6 = new Button("6");
b6.addActionListener(this);
Button b7 = new Button("7");
b7.addActionListener(this);
Button b8 = new Button("8");
b8.addActionListener(this);
Button b9 = new Button("9");
b9.addActionListener(this);

Button b0 = new Button("0");
b0.addActionListener(this);

Button c = new Button("Clear");
c.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
    clear.setText("");
}
});
    tf = new TextField(100);
add(tf);
tf.setEnabled(false);
tf.addActionListener(this);
tf.addTextListener(this);
setVisible(false);

ta = new TextArea("", 10, 30);
    add(ta);
    ta.setEnabled(true);
    setVisible(true);


Panel p1 = new Panel();
p1.setLayout(new GridLayout(3, 3));
p1.setBackground(Color.gray);
p1.add(b1);
p1.add(b2);
p1.add(b3);
p1.add(b4);
p1.add(b5);
p1.add(b6);
p1.add(b7);
p1.add(b8);
p1.add(b9);

Panel p2 = new Panel();
p2.setBackground(Color.gray);
p2.add(b0);
p2.add(c);

add(ta, BorderLayout.NORTH);
add(p1, BorderLayout.CENTER);
add(p2, BorderLayout.SOUTH);

pack();
setSize(400, 300);
setVisible(true);
}

public static void main(String args[]) {
    CalcFacade cf = new CalcFacade();
}
public void actionPerformed(ActionEvent e) {
   tf.setText(""
    +((Button)e.getSource()).getLabel());
}

public void textValueChanged(TextEvent e) {
    ta.append(tf.getText());
}
}

我非常感谢你提供所有帮助。

2 个答案:

答案 0 :(得分:1)

TextField不需要只按按钮来监听事件。

要将数字添加到最后,只需将文本设置为TextField中的内容以及按钮标签。

只有一个ActionListener和一个actionPerformed方法;识别按钮并适当设置TextField,即c.addActionListener(this);

public void actionPerformed(ActionEvent e)
{
    Button b = (Button) e.getSource();

    if (b.getLabel().equals("Clear"))
    {
        tf.setText("");
    }
    else
    {
        tf.setText(tf.getText() + b.getLabel());
    }
}

答案 1 :(得分:0)

当我猜测您要在ActionListener上调用时,setText("")的“{1}}似乎正在Label clear上调用TextField tf