gpt4 book ai didi

java - 通过改造上传大型 Base64 编码文件的正确方法是什么?

转载 作者:太空宇宙 更新时间:2023-11-04 11:36:16 26 4
gpt4 key购买 nike

所以我正在使用retrofit 2,它在下面使用了okhttp。下面的代码片段有效,但我遇到大文件的 OOM 错误。我相信这是因为我正在将文件读取到字节数组。

推荐的处理方法是什么?

private void appendFileContentsToBody(Attachment attachment, MultipartBody.Builder requestBodyBuilder) throws IOException {
File file = new File(attachment.getAbsolutePath());
if(file.exists()){
RequestBody attachmentPart = RequestBody.create(null, Base64.getEncoder().encode(FileUtils.readFileToByteArray(file)));
requestBodyBuilder.addPart(Headers.of("X-Filename", attachment.getFilename()), attachmentPart);
}
}

最佳答案

在发送文件之前,您不应该将文件编码为 Base64,这应该使用流来完成,这将由 Retrofit 为您完成。所以你的代码应该看起来像

private void appendFileContentsToBody(Attachment attachment, MultipartBody.Builder requestBodyBuilder) throws IOException {
File file = new File(attachment.getAbsolutePath());
if(file.exists()){
RequestBody attachmentPart = RequestBody.create(MediaType.parse("application/pdf"), file);
requestBodyBuilder.addPart(Headers.of("X-Filename", attachment.getFilename()), attachmentPart);
}
}

其中“application/pdf” - 是特定文件的 MIME 类型。
这样你就永远不会遭受 OOM 的痛苦。然而,这种方法可能首先在后端实现,因为现在您的后端实现似乎仅适用于网络应用程序,因为它需要请求正文中的编码文件。

关于java - 通过改造上传大型 Base64 编码文件的正确方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43246456/

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