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?