如何将字符串添加到textPane而不是设置它们?

时间:2013-12-29 20:27:52

标签: java user-interface jframe int calculator

我正在尝试制作一个计算器。 http://i.imgur.com/exQLj4m.png 用户将按下他们想要计算的数字,然后是操作员全部在一行中,例如 '1 + 1-2 + 5' 那么Java会把它转换成它能理解的东西并得到答案。 但是当我尝试在TextPane上使用setText()时答案将显示,它不会在其中添加更多数字只是更改为指定的数字。当我按1时它显示1但是当我按2时它不显示12,它显示2.是否有像addText()方法? 这是我的数字1按钮的代码。

JButton btnNewButton = new JButton("1");
    btnNewButton.addActionListener(new ActionListener() {
        public void actionPerformed(ActionEvent arg0) {
            answer.setText("1");
        }});    

2 个答案:

答案 0 :(得分:1)

  

这是我的数字1按钮的代码。

不要为每个按钮创建自定义ActionListener。使用通用侦听器。类似的东西:

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

public class CalculatorPanel extends JPanel
{
    private JTextField display;

    public CalculatorPanel()
    {
        Action numberAction = new AbstractAction()
        {
            @Override
            public void actionPerformed(ActionEvent e)
            {
                display.setCaretPosition( display.getDocument().getLength() );
                display.replaceSelection(e.getActionCommand());
            }
        };

        setLayout( new BorderLayout() );

        display = new JTextField();
        display.setEditable( false );
        display.setHorizontalAlignment(JTextField.RIGHT);
        add(display, BorderLayout.NORTH);

        JPanel buttonPanel = new JPanel();
        buttonPanel.setLayout( new GridLayout(0, 5) );
        add(buttonPanel, BorderLayout.CENTER);

        for (int i = 0; i < 10; i++)
        {
            String text = String.valueOf(i);
            JButton button = new JButton( text );
            button.addActionListener( numberAction );
            button.setBorder( new LineBorder(Color.BLACK) );
            button.setPreferredSize( new Dimension(50, 50) );
            buttonPanel.add( button );

            KeyStroke pressed = KeyStroke.getKeyStroke(text);
            InputMap inputMap = button.getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW);
            inputMap.put(pressed, text);
            button.getActionMap().put(text, numberAction);
        }
    }

    private static void createAndShowUI()
    {
//      UIManager.put("Button.margin", new Insets(10, 10, 10, 10) );

        JFrame frame = new JFrame("Calculator Panel");
        frame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
        frame.add( new CalculatorPanel() );
        frame.pack();
        frame.setLocationRelativeTo( null );
        frame.setVisible(true);
    }

    public static void main(String[] args)
    {
        EventQueue.invokeLater(new Runnable()
        {
            public void run()
            {
                createAndShowUI();
            }
        });
    }
}

上面的代码还说明了如何将文本附加到文本组件。

答案 1 :(得分:0)

使用

  answer.setText(answer.getText()+"1");

而不是

   answer.setText("1");

这肯定会解决你的问题。