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
ByteArrayOutputStream from OutputStream
提问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
ByteArrayOutputStream
isa subclass of OutputStream
.
ByteArrayOutputStream
isa subclass of OutputStream
.
ByteArrayOutputStream bos = ...;
OutputStream os = bos;
回答by WhiteFang34
A ByteArrayOutputStream
is an OutputStream
. I.e. you can just assign it like this:
A ByteArrayOutputStream
is 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;
}