其實我需要在amazon s3服務器上同時上傳多張圖片。這裏是我的單一文件上傳代碼在這裏::如何在amazon webservice s3(Android)上同時上傳多張圖片?
TransferObserver transferObserver = transferUtility.upload(
"selfiesharedev", /* The bucket to upload to */
mini_image_path, /* The key for the uploaded object */
file, /* The file where the data to upload exists */
CannedAccessControlList.PublicRead
);
[使用PHP Web服務中上傳多張圖片]的可能的複製(http://stackoverflow.com/questions/27834733/uploading-multiple-images-in-webservice-using-php) – AlphaQ
最後我得到了解決辦法爲multiupload android .am使用這種方法https://aws.amazon.com/blogs/developer/amazon-s3-transfermanager-batched-file-uploads/ –