简体   繁体   中英

How to get content type from blobstore by blobkey?

I get blobkey from datastore.
Now I want to use this blobkey to get content type of blob in blobstore.

How to do it?

You can try this code

BlobInfoFactory bif = new BlobInfoFactory();
BlobKey bk = new BlobKey("<your blobkey>");
BlobInfo blobInfo = bif.loadBlobInfo(bk);

if(blobInfo == null)
    // The blob with the provided blobkey does not exists
else
    String contentType = blobInfo.getContentType();

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM