AmazonS3Client s3 = new AmazonS3Client (
new BasicAWSCredentials ( ACCESS_KEY_ID, SECRET_KEY ) );
s3.createBucket ( PICTURE_BUCKET ) ;
PutObjectRequest por = new PutObjectRequest (
PICTURE_BUCKET,
PICTURE_NAME,
new java.io.File ( image ) );
s3.putObject ( por ) ;
S3Object data = s3.getObject ( PICTURE_BUCKET, PICTURE_NAME ) ;
73
Get object
from bucket
Create
Amazon S3
client
Create
Amazon S3
bucket
Put object
into bucket