25/09/2006, 13:45
|
| | Fecha de Ingreso: septiembre-2005
Mensajes: 34
Antigüedad: 19 años, 4 meses Puntos: 0 | |
mmm bueno no soy tan bueno n java pero creo q el primer error q te da te dice q JTextField en este caso debe ser estar declarado como final, y el segundo te dice que l metodo de Jtext ".setText(String)" debe recibir como parametro un String y tu le estabas mandando un "char"...espero q te sirva, ...salu2
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class prueba
{
public static void main(String[] args)
{
JFrame frame=new JFrame();
final JButton boton=new JButton("Un botó");
final JTextField text=new JTextField();
frame.getContentPane().setLayout(new BorderLayout());
frame.add(boton, BorderLayout.SOUTH);
frame.add(text, BorderLayout.NORTH);
//escucha boton
boton.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
text.setText("Me apretaron!!");
}
});
frame.pack();
frame.setVisible(true);
}
} |