我在亚马逊上有一个S3存储桶,并试图递归获取位于存储桶下文件夹中的所有zip文件的列表。
例如,我的zip文件位于以下位置:
bucket1/${user1}/${date1}/abc.zip
bucket1/${user2}/${date2}/xyz.zip
bucket1/${user3}/${date3}/mno.zip
bucketName=bucket1
prefix=bucket1/
下面是我的代码:
final AmazonS3 amazonS3 = AmazonS3Utils.getAmazonS3Client();
final ListObjectsRequest listObjectsRequest = new ListObjectsRequest().withBucketName("bucket1")
.withPrefix("bucket1/");
ObjectListing current = amazonS3.listObjects(listObjectsRequest);
final List<S3ObjectSummary> keyList = current.getObjectSummaries();
while (current.isTruncated())
{
keyList.addAll(current.getObjectSummaries());
current = amazonS3.listNextBatchOfObjects(current);
}
keyList.addAll(current.getObjectSummaries());
for(S3ObjectSummary summary : keyList)
{
System.out.println(summary.getKey());
}
但是我又得到一个空名单。
我做错什么了吗?有什么方法可以从存储桶中递归获取zip文件列表吗?
最佳答案
我唯一看到的就是与您的S3存储桶建立了连接。请尝试以下操作,这可能会有所帮助
AWSCredentials credentials = new BasicAWSCredentials(accessKeyId,secretAccessKey);
AmazonS3 s3Client = new AmazonS3Client(credentials);
ObjectListing objects = s3Client.listObjects(listobjectrequest);