実際に私は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
);
可能な複製(http://stackoverflow.com/questions/27834733/uploading-multiple-images-in-webservice-using-php) – AlphaQ
は最終的に私が得たソリューションこのメソッドを使用して、マルチアップロードアンドロイド.am用https://aws.amazon.com/blogs/developer/amazon-s3-transfermanager-batched-file-uploads/ –