I'm importing a string from a file and the string is "Computer_Made". If I execute this code, though, it does not print "The computer is already made!" Any ideas?
if (data=="Computer_Made")
    {
    computer=true;
    System.out.println("The computer is already made!");
    }
 
     
     
    