How to upload an Android file to S3 bucket with pu

2019-08-29 05:04发布

I keep trying to upload a file to an s3 bucket. But the file is never public for viewing. I have to manually make the files/folder in the bucket public (for every upload) for it to be view able.

Is there a way to upload an Android file (bitmap) with the default permission to be public for viewing during. I would prefer to do this programmatically, if possible. I've checked the s3 docs, couldn't find anything helpful.

2条回答
成全新的幸福
2楼-- · 2019-08-29 05:32

Yes, it is very easy for those guys, who is using TransferUtility, use below method for uploading any file for public readable form using TransferUtility in android,

transferUtility.upload(String bucketName,String key,File file,CannedAccessControlList cannedAcl)

Example:

transferUtility.upload("MY_BUCKET_NAME","FileName",your_file,CannedAccessControlList.PublicRead);
查看更多
爱情/是我丢掉的垃圾
3楼-- · 2019-08-29 05:49

To make all objects in your bucket public by default, view the answers to this question or this question.

To specify public access for each file when you are uploading them via Android, set the ACL on the PutObjectRequest like this:

PutObjectRequest putObjectRequest = new PutObjectRequest()
    .withCannedAcl(CannedAccessControlList.PublicRead)

It doesn't look like you can set the ACL in one step with TransferUtility at this time: https://github.com/aws/aws-sdk-android/issues/63

So after uploading the file via TransferUtility you would need to do the following:

s3client.setObjectAcl(bucketName, keyName, CannedAccessControlList.PublicRead);
查看更多
登录 后发表回答