gpt4 book ai didi

java - 将 InputStream(Image) 转换为 ByteArrayInputStream

转载 作者:太空狗 更新时间:2023-10-29 23:03:22 26 4
gpt4 key购买 nike

不确定我应该如何做到这一点。任何帮助将不胜感激

最佳答案

从输入流中读取并写入 ByteArrayOutputStream ,然后调用它的toByteArray()获取字节数组。

创建一个 ByteArrayInputStream围绕字节数组以从中读取。

这是一个快速测试:

import java.io.*;

public class Test {


public static void main(String[] arg) throws Throwable {
File f = new File(arg[0]);
InputStream in = new FileInputStream(f);

byte[] buff = new byte[8000];

int bytesRead = 0;

ByteArrayOutputStream bao = new ByteArrayOutputStream();

while((bytesRead = in.read(buff)) != -1) {
bao.write(buff, 0, bytesRead);
}

byte[] data = bao.toByteArray();

ByteArrayInputStream bin = new ByteArrayInputStream(data);
System.out.println(bin.available());
}
}

关于java - 将 InputStream(Image) 转换为 ByteArrayInputStream,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3495942/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com