I use the JetS3t to try to list sub files under a folder:
S3Object[] objects = s3Service.listObjects(Bucket, path, "/");
List<S3Path> children = new ArrayList<S3Path>();
for (S3Object obj : objects) {
children.add(new S3Path(obj.getKey()));
}
But it shows all the files under this folder, and finally through the help of S3Orgnizer ...
Storage via JetS3t REST API seems to be very slow. Is there a caching front end for the JetS3t API for avoiding a network hit on the fetch calls [link text][1]
[1]: http://jets3t.s3.amazonaws.com/api/org/jets3t/service/S3Service.html#getObject(org.jets3t.service.model.S3Bucket, java.lang.String, java.util.Calendar, java.util.Calendar, j...
We're using Amazon S3 for file storage and recently found out that we need to keep some sort of directory structure. Since S3 doesn't allow that, we know we can name the files according to their structure for storage. For example...
abc/123/draft.doc
What I want to know is if I want to provide a public link to this particular file is ...
Hey guys,
I am trying to use the Jets3t library within an Android application, and I keep getting errors with the Rest service when I use the library.
04-27 16:47:39.491: ERROR/S3Service(225): Couldn't initialize a sax driver for the XMLReader
I have tried to include the Xerces library and the Crimson library, and it dont play well. ...
if yes please add example cause i have several errors.
...
References:
http://www.grails.org/plugin/amazon-s3
http://svn.codehaus.org/grails-plugins/grails-amazon-s3/trunk/grails-app/services/org/grails/s3/S3AssetService.groovy
http://svn.codehaus.org/grails-plugins/grails-amazon-s3/trunk/grails-app/domain/org/grails/s3/S3Asset.groovy
By "happy" names, I mean the real name of the file I'm up...
Hello, sry for my English, i'm bad at it.
My problem is:
I generate signed Upload link to amazon
signedUrl = StorageConnection.getInstance().getS3Service().createSignedPutUrl(buck_name, KeyID, null, expiryDate);
And i want to upload at this from other program, zipping file at stream:
private void put(String link, InputStream stream) ...