FileWriter problem (fast help required)
I have this problem parsinf RTF file and trying to convert it into XML file.
I have written my own RTF parser that reads the RTF file and writes to XML file. I have run the program on three different computers and on everyone of them I have the same problem. The output file has the size of 417792 bytes. The condition to close the XML file is that the RTF file has been read but the XML file is not complete. By that I mean that when it reaches the size of 417792 bytes any Strung that I try to write using the write method of FileWriter class isn't written properly.
Example:
witer.write("<newline/>");
in file:
<newl
Does anyone know why does it happen?
And is there a possibility of changing the buffer size?>

