如何在没有输入流长度知识的情况下放置对象
我正在使用 SDK 2.0 并尝试将 Object 放入存储桶中。
我从不同的 API 接收保存文件(CSV 或纯文本)的 InputStream,
InputStream stream = otherApi.get();
S3Client s3 = S3Client.build();
s3.putObject(PutObjectRequest.builder(), RequestBody ? )
RequestBody 也有多种有用的方法 RequestBody.fromInputStream
但需要提供 contentLenght
,但我不提供我不知道。文件可以是(1MB 甚至 20MB)。
大家在使用新版API的过程中遇到过这个问题吗?
旧版 1.X 不需要了解 contentLength。
I'm using SDK 2.0 and trying to putObject into the bucket.
From different API I'm receiving InputStream which holds file (CSV or plain text)
InputStream stream = otherApi.get();
S3Client s3 = S3Client.build();
s3.putObject(PutObjectRequest.builder(), RequestBody ? )
RequestBody has multiple useful methods as well RequestBody.fromInputStream
but require to provide contentLenght
which I don't know. Files could be (1MB or even 20MB).
Anyone faced with this problem during using the new API version?
Old 1.X did not requered knowledge of contentLength.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论