I am developing a small java application. At some point i am writing some data in a plain text file. Using the following code:
Writer Candidateoutput = null;
Well Windows expects a newline and a carriage return char to indicate a new line. So you'd want to do \r\n to make it work.