Java - 连接两个输出流

发布于 2025-01-01 04:02:46 字数 77 浏览 0 评论 0原文

是否可以连接两个 OutputStream(相同类型,存储为 OutputStream)而不将其中任何一个转换为字符串?如果是这样,怎么办?

Is it possible to concatenate two OutputStreams (of the same type, stored as OutputStreams) without converting either to a string? If so, how?

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

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

发布评论

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

评论(2

剧终人散尽 2025-01-08 04:02:46

因此,如果您有 OutputStream A 和 OutputStream B,并且您想将它们连接起来,以便最终得到 A 中的内容,然后是 B 中的内容,您可以将 B 转换为 InputStream (这项任务可能已被在这个论坛中解释了超过9000次),然后从这个新的InputStream中读取数据,并将其写入A。那里:一个通用问题的通用答案。祝你好运!

So, If you have OutputStream A, and OutputStream B, and you want to concatenate them so that you end up with the stuff from A, followed by the stuff from B, you could convert B into an InputStream (a task that has likely been explained over 9000 times in this forum), and then Read data from this new InputStream, and write it to A. There: A generic answer for a generic question. Good luck!

递刀给你 2025-01-08 04:02:46

一个简短的例子:

private void test(Document xmlDoc) throws Exception {
    ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
    String s1 = "header";
    outputStream.write(s1.getBytes());
    ByteArrayOutputStream bodySubTree = (ByteArrayOutputStream) xmlToOutStream(xmlDoc);
    outputStream.write(bodySubTree.toByteArray());
    String s2 = "footer";
    outputStream.write(s2.getBytes());
}

A short example:

private void test(Document xmlDoc) throws Exception {
    ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
    String s1 = "header";
    outputStream.write(s1.getBytes());
    ByteArrayOutputStream bodySubTree = (ByteArrayOutputStream) xmlToOutStream(xmlDoc);
    outputStream.write(bodySubTree.toByteArray());
    String s2 = "footer";
    outputStream.write(s2.getBytes());
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文