我尝试从 Java 中的 Google App Engine 获取存储在 Google Cloud Storage 中的文件的大小,
我试过这个:
FileService fileService = FileServiceFactory.getFileService();
AppEngineFile appEngineFile = fileService.getBlobFile(new BlobKey("blob key"));
int size = (int) fileService.stat(appEngineFile).getLength().longValue();
但它返回 0