任何人都知道如何使用GetOptions
从Blob存储中获取Blob:
BlobStore blobStore = context.getBlobStore();
Blob blob = blobStore.getBlob(cloudStorageContainer, fileName);
我想要实现的是在调用org.jclouds.blobstore.options.GetOptions
方法时将ETag值传递给BlobStore.getBlob()
答案 0 :(得分:2)
jclouds可以通过以下方式之一有条件地基于其ETag获取Blob:
BlobStore.getBlob(containerName, blobName, new Getoptions().ifETagMatches(etag));
BlobStore.getBlob(containerName, blobName, new Getoptions().ifETagDoesntMatch(etag));