NIO 通道的类似于 BinaryStreams 的帮助器类?
NIO ByteChannel 是否有一个库提供与 google-guava 和 commons-io 为流提供的类似实用程序? 例如,我希望将多个 ReadableByteChannel 连接成一个,或者将通道视图限制为特定大小。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 Channels 类,例如
You can partially work around it using the utility methods in the Channels class, e.g.