是否可以在 java.nio(或常规 java io)中分叉(克隆)流?

发布于 2024-12-17 17:39:52 字数 80 浏览 0 评论 0原文

是否可以(使用标准 java.nio api,无需重大黑客攻击或代理或外观)获取输出流并克隆它,以便对流的每次写入都从一个复制到两个独立的输出流?

Is it possible (using the standard java.nio api, without major hacking or proxying or facading) to take an output stream, and clone it, so that every write to the stream gets copied to two, independent output streams from one ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

画离情绘悲伤 2024-12-24 17:39:52

不可以。您必须编写委托给两个(所有)目标通道的 WritableByteChannel 实现。不太难,只需要写一个构造函数和三个方法。

编辑 您可以通过编写 FilterOutputStream 派生类对流执行相同的操作。又非常容易。

No. You would have to write an implementation of WritableByteChannel that delegated to both (all) target channels. Not too difficult, only one constructor and three methods to write.

EDIT You can do the same thing for streams by writing a FilterOutputStream derived class. Again very easy.

不忘初心 2024-12-24 17:39:52

Like EJP said it is very easy, but you could also use the commons-io library from Apache for that.

TeeOutputStream - From the Docs: "Classic splitter of OutputStream. Named after the unix 'tee' command. It allows a stream to be branched off so there are now two streams."

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文