Keypressed issue
I want to display the texts which are enterred in a text box, but if i enter "r" in the text box its not displaying instantly, i will display the "r" only while entering the next character
publicvoid keyPressed(java.awt.event.KeyEvent e){
//
ba = jTextField.getText();
System.out.println("From the text >"+ba);
Any one can help me out

