I'm using Rackspace's Cloud Files product and I've been successfully putting files to my containers, however, during testing I found that files did not have a set Content-Type.
I've looked high and low for examples on how to set content type with the Java SDK, but no luck.
What I have tried:
Map<String, String> metaData = new HashMap<String, String>();
metaData.put("mime-type", content_type);
// or metaData.put("Content-Type", content_type);
Blob blob = storage.blobBuilder(file.getName())
.payload(file).userMetadata(metaData).build();
storage.putBlob(container, blob);
Any help would be appreciated.
Solved it! The problem was that it's not Metadata and that BlobBuilder.PayloadBlobBuilder has a method called
contentType
where you can set the String value.