gpt4 book ai didi

java - 如何将字节流图像数据放入JSON对象中?

转载 作者:行者123 更新时间:2023-11-30 03:06:45 26 4
gpt4 key购买 nike

我想使用字节流格式将多个图像放入 JSON 对象中,我编写了以下代码。

FileInputStream fin = new FileInputStream(pathToImages+"//"+"01.jpg");

BufferedInputStream bin = new BufferedInputStream(fin);

BufferedOutputStream bout = new BufferedOutputStream(out);
int ch =0; ;

sun.misc.BASE64Encoder encoder= new sun.misc.BASE64Encoder();
byte[] contents = new byte[5000000];
int bytesRead = 0;
String strFileContents;
while ((bytesRead = bin.read(contents)) != -1) {
bout.write(encoder.encode(contents).getBytes());
}
JsonObject myObj = new JsonObject();

我想将编码后的字节流放入 myObj 中,但不知道该怎么做。

谢谢

最佳答案

JSONObject myObj = new JSONObject();
myObj.put("1",encoder.encode(contents).getBytes());

我认为这会起作用。

关于java - 如何将字节流图像数据放入JSON对象中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34574736/

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