Android中的Amazon Transfer Utility占用带宽

时间:2015-09-08 13:55:52

标签: android amazon-s3 upload android-volley bandwidth

我正在使用新的Transfer Utility将图像上传到S3存储桶。

BasicAWSCredentials credentials = new BasicAWSCredentials(3AccessKey, s3SecretKey);
ClientConfiguration config  = new ClientConfiguration();
config.setMaxErrorRetry(0);
config.setSocketTimeout(60000);
AmazonS3Client s3Client = new AmazonS3Client(credentials, config);
uploadTransferManger = new TransferUtility(s3Client, getApplicationContext());

通过使用此功能,我一次上传1张图片。这发生在后台。 目前,如果我在Android中通过浏览器或通过Android Volley以编程方式执行任何HTTP请求,这些请求会超时。

任何人都可以为此提供解决方案。

0 个答案:

没有答案