I am taking a the programming class where we have to compress a file using a Huffman Tree and decompress it.
I am running into a problem where I am unable to capture the last newline character of a txt file. E.G.
This is a line  
This is a secondline
//empty line
So if I compress and decompress the above text in a file, I end up with a file with this
This is a line  
This is a secondline
Right now I'm doing
while(Scanner.hasNextLine()){ 
    char[] cArr = file.nextLine().toCharArray();
    //count amount of times a character appears with a hashmap
    if(file.hasNextLine()){
        //add an occurrence of \n to the hashmap
    }
}
I understand the problem is that the last line technically does not have a "Scanner.hasNextline()" since I just consumed the last '\n' of the file with the nextLine() call.
Upon realizing that I have tried doing useDelimiter("") and Scanner.next() instead of Scanner.nextLine() and both still lead to similar problems.
So is there a way to fix this?
Thanks in advance.
 
    