java ByteArrayOutputStream from OutputStream

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/5878632/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-10-30 13:15:21  来源:igfitidea点击:

ByteArrayOutputStream from OutputStream

java

提问by Taranfx

How to create OutputStream from ByteArrayOutputStream in Java

How to create OutputStream from ByteArrayOutputStream in Java

回答by Harry Joy

Following runs without error:

Following runs without error:

ByteArrayOutputStream stream = new ByteArrayOutputStream();
OutputStream outStream = stream;

If you see the docs for ByteArrayOutputStreamyou will find that it extends OutputStream.

If you see the docs for ByteArrayOutputStreamyou will find that it extends OutputStream.

回答by Harry Joy

ByteArrayOutputStreamisa subclass of OutputStream.

ByteArrayOutputStreamisa subclass of OutputStream.

ByteArrayOutputStream bos = ...;
OutputStream os = bos;

回答by WhiteFang34

A ByteArrayOutputStreamis an OutputStream. I.e. you can just assign it like this:

A ByteArrayOutputStreamis an OutputStream. I.e. you can just assign it like this:

ByteArrayOutputStream baos = new ByteArrayOutputStream();
OutputStream out = baos;

回答by Koekiebox

You can create a helper method like follows:

You can create a helper method like follows:

public OutputStream convert(ByteArrayOutputStream arrayOutputStreamParam){
        return arrayOutputStreamParam;
    }