Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
319 views
in Technique[技术] by (71.8m points)

jsp - Uploading S3 using AWS SDK Java

my current setup is like this

  AmazonS3 s3Client = new AmazonS3Client();

  InputStream stream = new URL(filePath).openStream();

  ObjectMetadata objectMetadata = new ObjectMetadata();
  PutObjectRequest putObjectRequest = new PutObjectRequest(amazonFileUploadLocationOriginal, keyName, stream, objectMetadata);

  PutObjectResult result = s3Client.putObject(putObjectRequest);

And I'm always getting this error

java.lang.IllegalStateException: Content has been consumed

And I know it is caused by calling

 HttpEntity.getContent()

multiple times

But I can't seem to debug/find where it is being called multiple times

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

From PutObjectRequest doc

metadata - The object metadata. At minimum this specifies the content length for the stream of data being uploaded.

I had never used an input stream from an URL, but looks like you are missing the "length for the stream".


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...