InputStream TO byte
Posted INEFFABLE LAND
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了InputStream TO byte相关的知识,希望对你有一定的参考价值。
public class ByteToInputStream {
public static final InputStream byte2Input(byte[] buf) {
return new ByteArrayInputStream(buf);
}
public static final byte[] input2byte(InputStream inStream)
throws IOException {
ByteArrayOutputStream swapStream = new ByteArrayOutputStream();
byte[] buff = new byte[100];
int rc = 0;
while ((rc = inStream.read(buff, 0, 100)) > 0) {
swapStream.write(buff, 0, rc);
}
byte[] in2b = swapStream.toByteArray();
return in2b;
}
}
以上是关于InputStream TO byte的主要内容,如果未能解决你的问题,请参考以下文章