gpt4 book ai didi

java - 如何通过 blobkey 从 blobstore 获取内容类型?

转载 作者:行者123 更新时间:2023-11-30 04:13:11 26 4
gpt4 key购买 nike

我从数据存储区获取 blobkey。
现在我想使用这个 blobkey 来获取 blobstore 中 blob 的内容类型。

怎么做?

最佳答案

您可以尝试此代码

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();

关于java - 如何通过 blobkey 从 blobstore 获取内容类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19109278/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com