How is it possible that if I type A in a textfield, that is added to String variable which is empty and I can then pass that string as a argument to a textfield for display what I typed.
for example:
String letter2="";
if(ke.getKeyCode()==KeyEvent.VK_A)
letter2=letter2+"a";
btextfield.setText(letter2);