Project

General

Profile

Feature #16146 ยป UploadObjectSingleOperation.java

Javier M. Mellid, 06/03/2016 03:49 PM

 
import java.io.File;
import java.io.IOException;

import com.amazonaws.AmazonClientException;
import com.amazonaws.AmazonServiceException;
import com.amazonaws.auth.profile.ProfileCredentialsProvider;
import com.amazonaws.services.s3.AmazonS3;
import com.amazonaws.services.s3.AmazonS3Client;
import com.amazonaws.services.s3.model.CreateBucketRequest;
import com.amazonaws.services.s3.model.PutObjectRequest;

import com.amazonaws.ClientConfiguration;
import com.amazonaws.Protocol;
import com.amazonaws.services.s3.S3ClientOptions;

public class UploadObjectSingleOperation {
private static String bucketName = "my-bucket-name-1111";
private static String keyName = "my-key-name-1111";
private static String uploadFileName = "my-file-name-1111";
public static void main(String[] args) throws IOException {
ClientConfiguration clientConfig = new ClientConfiguration();
clientConfig.setProtocol(Protocol.HTTP);
AmazonS3 s3client = new AmazonS3Client(new ProfileCredentialsProvider(), clientConfig);
s3client.setEndpoint("s3.eu-central-1.amazonaws.com");
s3client.setS3ClientOptions(new S3ClientOptions().withPathStyleAccess(true));
try {
if(!(s3client.doesBucketExist(bucketName)))
{
s3client.createBucket(new CreateBucketRequest(bucketName));
}
System.out.println("Uploading a new object to S3 from a file\n");
File file = new File(uploadFileName);
s3client.putObject(new PutObjectRequest(bucketName, keyName, file));

} catch (AmazonServiceException ase) {
System.out.println("Caught an AmazonServiceException, which " +
"means your request made it " +
"to Amazon S3, but was rejected with an error response" +
" for some reason.");
System.out.println("Error Message: " + ase.getMessage());
System.out.println("HTTP Status Code: " + ase.getStatusCode());
System.out.println("AWS Error Code: " + ase.getErrorCode());
System.out.println("Error Type: " + ase.getErrorType());
System.out.println("Request ID: " + ase.getRequestId());
} catch (AmazonClientException ace) {
System.out.println("Caught an AmazonClientException, which " +
"means the client encountered " +
"an internal error while trying to " +
"communicate with S3, " +
"such as not being able to access the network.");
System.out.println("Error Message: " + ace.getMessage());
}
}
}
    (1-1/1)