I have a script which visits links from a text file. I am trying to delete the string if value returned is null
Example:
 1. some link (returned value 'hi')
 2. some link (returned null value)     //DELETE STRING FROM FILE BECAUSE NULL VALUE RETURNED
 3. some link (returned value 'hello')
Some code:
while ((input = in.readLine()) != null) {
                    System.out.println(input);
            if ((input = in.readLine())=="0"){
            System.out.println("1 String deleted from file because null value returned ");                  
    }
I'm aware that I'm checking for String "0" instead of an integer 0 because the server stores it as a string i suppose.
 
    