What is the simplest way to get a list of all items within an S3 bucket using Java?
List s3objects = s3.listObjects(bucketName,prefix)
I know this is an old post, but this still might be usefull to anyone: The Java/Android SDK on version 2.1 provides a method called setMaxKeys. Like this:
s3objects.setMaxKeys(arg0)
You probably found a solution by now, but please check one answer as correct so that it might help others in the future.