Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
1  
log4j is open source. Can you adapt the code they've already written? – Jonathon Dec 3 '10 at 21:36
I looked into it, but the Rolling file appender is nothing like a Stream and has lots of dependencies of other code portions. I'd probably be able to extract some ideas though. – EddyYosso Dec 4 '10 at 10:54

2 Answers

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 :)

share|improve this answer

I haven't seen anything like that, but you could probably subclass Apache Commons IO ThreadholdingOutputStream to do it.

share|improve this answer
Good Idea, that way the buffer could be kept in memory while switching the stream over to a new file. Thanks, will try that – EddyYosso Dec 4 '10 at 10:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.