Is there a simple Java OutputStream that mimics a functionality similar to the log4j RollingFileAppender ? Basically it would write to a file that grows to a maximum size, then renames it, begins a new one etc. Just thought I'd ask, before writing it from scratch.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Nothing like that in plain java. Once you have a file handle open it's open - and it's up to you to close it :) |
|||
|
|
|
I haven't seen anything like that, but you could probably subclass Apache Commons IO |
|||
|