I am trying to search a string in a file in java and this is what, I tried . In the below program I am getting output as No Data Found and I am sure that the file has the word which I am searching
import java.io.*;
import java.util.Scanner;
public class readfile {
    static String[] list;
    static String sear = "CREATE";
    public void search() {
        Scanner scannedFile = new Scanner("file.txt");
        while (scannedFile.hasNext()) {
            String search = scannedFile.next();
            System.out.println("SEARCH CONTENT:"+search);
            if (search.equalsIgnoreCase(sear)) {
                System.out.println("Found: " +search);
            } 
            else  {
                System.out.println("No data found.");
            }
        }
    }
    public static void main (String [] args) throws IOException {
        readfile read = new readfile();
        read.search();
    }
}
 
     
     
     
     
     
     
     
    