Re: With a FileReader:BufferedReader, I need to del file contents and start logging again. Is there a really simple way to do this that I am missing?
Posted By:
mark_webb
Posted On:
Thursday, April 12, 2001 07:04 AM
Use RandomAccessFile instead of BufferedReader/FileReader. Then RandomAccessFile.setLength(0) will set the file size to zero.