public static void displayInfo(KeyEvent e){
int id = e.getID();
String keyString;
char c = e.getKeyChar();
keyString = ""+c;
if (keyString=="w"){
System.out.print("FACE");
}
}
this is my code and for whatever reason it wont work. Help please?
You should not compare strings with the
==
operator. Instead, use theequals
method. So, change this line:to this: