如何将Byte数组转换为ByteArrayOutputStream

时间:2013-09-02 14:27:40

标签: java byte bytearrayoutputstream

我需要将一个字节数组转换为ByteArrayOutputStream,以便我可以在屏幕上显示它。

3 个答案:

答案 0 :(得分:39)

byte[] bytes = ....;
ByteArrayOutputStream baos = new ByteArrayOutputStream(bytes.length);
baos.write(bytes, 0, bytes.length);

方法说明:

  

将从offset off开始的指定字节数组中的len个字节写入此字节数组输出流。

答案 1 :(得分:0)

您无法显示ByteArrayOutputStream。我怀疑你要做的是

byte[] bytes = ...
String text = new String(bytes, "UTF-8"); // or some other encoding.
// display text.

你可以让ByteArrayOutputStream做类似的事情,但这不是明显的,有效的或最佳实践(因为你无法控制使用的编码)

答案 2 :(得分:0)

借助JDK/11,您可以利用writeBytes(byte b[]) API,该API最终会按照answer by Josh中的建议调用write(b, 0, b.length)

/**
 * Writes the complete contents of the specified byte array
 * to this {@code ByteArrayOutputStream}.
 *
 * @apiNote
 * This method is equivalent to {@link #write(byte[],int,int)
 * write(b, 0, b.length)}.
 *
 * @param   b     the data.
 * @throws  NullPointerException if {@code b} is {@code null}.
 * @since   11
 */
public void writeBytes(byte b[]) {
    write(b, 0, b.length);
}

示例代码将简单地转换为-

byte[] bytes = new byte[100];
ByteArrayOutputStream baos = new ByteArrayOutputStream(bytes.length);
baos.writeBytes(bytes);