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 library for NIO ByteChannel providing similar utilities to what google-guava and commons-io provide for streams? E.g. I'd like to have several ReadableByteChannels concatenated in one or have a view of a channel limited to a particular size.

share|improve this question
2  
I think this is a good suggestion. How about posting a Feature Request to guava? – Sean Patrick Floyd Feb 3 '11 at 15:43
I've found a similar request code.google.com/p/guava-libraries/issues/detail?id=324 Anyway, I would probably have to contribute it myself :). – OlegYch Feb 3 '11 at 18:11

1 Answer

You can partially work around it using the utility methods in the Channels class, e.g.

static byte[] toByteArray(ReadableByteChannel ch) {
    return ByteStreams.toByteArray(Channels.newInputStream(ch));
}
share|improve this answer
Thanks for your answer. I've perfromed a bit of testing and it seems that using FileChannel directly is faster than wrapping FileInputStream with this method. – OlegYch Feb 3 '11 at 17:59
I mean using guava to wrap FileInputStream and then wrapping it into Channel. – OlegYch Feb 3 '11 at 18:06

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.