Android亚马逊s3上传部分大小

时间:2016-03-25 10:59:04

标签: java android amazon-web-services amazon-s3

我是这样向亚马逊s3服务器发送文件的,并且确实需要将发送文件的部分大小从默认的亚马逊(5mb)更改为1 mb,有什么方法可以做到吗?

 TransferObserver observer = transferUtility.upload(
                            "mydir/test_dir",     /* The bucket to upload to */
                            data.getData().getLastPathSegment(),    /* The key for the uploaded object */
                            root        /* The file where the data to upload exists */
                    );;

1 个答案:

答案 0 :(得分:2)

S3分段上传的最小部件尺寸为5MB。 (见http://docs.aws.amazon.com/AmazonS3/latest/API/mpUploadUploadPart.html)。 Transfer Utility使用最小允许的零件尺寸,通常为5MB。