Habrá que enseñaros a pescar en vez de regalaros las cañas.
1) Leer la API
http://docs.oracle.com/javase/7/docs...TextField.html
Ahi dice:
The java.awt.TextField could be monitored for changes by adding a TextListener for TextEvent's. In the JTextComponent based components, changes are broadcasted from the model via a DocumentEvent to DocumentListeners. The DocumentEvent gives the location of the change and the kind of change if desired.
2) Ahora le pones un cirio a San Google Misericordioso de esta forma
https://www.google.es/#hl=es&sclient...w=1280&bih=834
3) Y si buceas un poco (haces un mínimo esfuerzo) te encuentras este link
http://cnx.org/content/m44921/latest/
Que incluye esta información
// Listen for changes in the text
myTextField.getDocument().addDocumentListener(new DocumentListener() {
public void changedUpdate(DocumentEvent e) {
// text was changed
}
public void removeUpdate(DocumentEvent e) {
// text was deleted
}
public void insertUpdate(DocumentEvent e) {
// text was inserted
}
});
Ahora trabaja un poco y no dejes esto para mañana. Que programar se aprende a base de esfuerzo.