String keys = "3|PNSN--G";
System.out.println(keys);
System.out.println(test.get(keys));
if ("c"==test.get(keys))
System.out.println("Sucess");
else
System.out.println("Failed");
3|PNSN--G
c
Failed
Why i cant compare it? If "c" is a String and value is a String "c" why it fails?