Trying to find a word in a large file. File is read line by line. When reading the way redLine exception is thrown. Are there any way around this? You can read it on the floor as a string?
for(String line; (line = fileOut.readLine()) != null; ){
                    if(line.contains(commandString)) 
                        System.out.println(count + ": " + line);
                    count++;
                }
java.lang.OutOfMemoryError:
UDP:
this is all my bad code:
static String file = "files.txt";
    static String commandString = "first";
    static int count = 1;
    public static void main(String[] args) throws IOException 
    {
        try(BufferedReader fileOut = new BufferedReader(new InputStreamReader(new FileInputStream(file), "Cp1251")) ){
            for(String line; (line = fileOut.readLine()) != null; ){
                    if(line.contains(commandString)) 
                        System.out.println(count + ": " + line);
                    count++;
                }
            System.out.println("before wr close :"  + Runtime.getRuntime().freeMemory());
            fileOut.close();
        }catch(Exception e) {
            System.out.println(e);
        }
    }
forloop. But anyway, what isfileOut, how is it defined and opened? Where does the file come from, and are you sure it's properly broken into lines and not a data/binary file?