我使用该代码将文件上传到AWS S3服务器:
private void beginUpload(String filePath) {
if (filePath == null) {
Toast.makeText(this, "Could not find the filepath of the selected file",
Toast.LENGTH_LONG).show();
return;
}
File file = new File(filePath);
TransferObserver observer = transferUtility.upload(AWSConfiguration.BUCKET_NAME, file.getName(),
file);
}
在上传之前,我想要调整图像大小(不是在我的手机上,而是仅在服务器上)以占用更少的内存。怎么做?