Angel*** 0 Denunciar post Postado Novembro 12, 2008 Boa tarde sou iniciante em java, sei q essa dúvida é simples mas realmente não esta funcionando. estou fazendo uma calculadora e não consigo fazer aparecer os numeros dos JButton no JTextField. Podem me ajudar? obrigada! Segue uma parte do código public class Calculadora extends JPanel implements ActionListener { // mostra os valores private JTextField texto; // botões de 0 a 9 private JButton botao1; private JButton botao2; private JButton botao3; private JButton botao4; private JButton botao5; private JButton botao6; private JButton botao7; private JButton botao8; private JButton botao9; private JButton botao0; public Calculadora (){ botao1 = new JButton ("1"); botao2 = new JButton ("2"); botao3 = new JButton ("3"); botao4 = new JButton ("4"); botao5 = new JButton ("5"); botao6 = new JButton ("6"); botao7 = new JButton ("7"); botao8 = new JButton ("8"); botao9 = new JButton ("9"); botao0 = new JButton ("0"); texto = new JTextField (); ..... .... Compartilhar este post Link para o post Compartilhar em outros sites
eibon 2 Denunciar post Postado Novembro 13, 2008 No action performed relativo aos buttons,coloca algo como texto.setText(texto.getText() + botao[numero].getText()) ex: private void botao1ActionPerformed(java.awt.event.ActionEvent evt) { texto.setText(texto.getText() + botao1.getText()); } Abraço! Compartilhar este post Link para o post Compartilhar em outros sites
Kandrade 7 Denunciar post Postado Novembro 13, 2008 Esse evento seria para os números e no evento dos botão operadores serão realizados os cálculos. http://forum.imasters.com.br/public/style_emoticons/default/thumbsup.gif Compartilhar este post Link para o post Compartilhar em outros sites
Angel*** 0 Denunciar post Postado Novembro 13, 2008 Obrigada!! resolvido meu básico problema! http://forum.imasters.com.br/public/style_emoticons/default/thumbsup.gif Compartilhar este post Link para o post Compartilhar em outros sites