我最近开始使用谷歌云平台,遇到了各种各样的包,比如
Storage storage = storageBilder.build();
storage.get("bucketname", Storage.BucketGetOption.fields())
Storage.BucketGetOption.fields();
如果我使用上面的代码,我将面临The method get(String, Storage.BucketGetOption) is undefined for the type Storage
。
它实际上使用了以下包中的存储
com.google.api.services.storage.Storage storage = storageBilder.build();
(i.still.do.not.know.this.)storage.get("bucketname", Storage.BucketGetOption.fields())
com.google.cloud.storage.Storage.BucketGetOption.fields();
为什么这种存储以各种方式实现?com.google.api
和有什么区别或用途com.google.cloud
?
有人可以解释一下吗?