判断存储桶是否存在

更新时间: 2020-03-24

存储桶(Bucket)是存储对象(Object)的容器,对象都隶属于存储桶。

本节介绍如何判断存储桶是否存在。

以下代码用于判断指定的存储桶是否存在:

// Endpoint以华北三为例,其它Region请按实际情况填写。
String endpoint = "oss.cn-north-3.inspurcloudoss.com";
String accessKey = "<yourAccessKey>";
String secretKey = "<yourSecretKey>";
String bucketName = "<yourBucketName>";

//创建OSSClient实例
OSSClientImpl ossClient = new OSSClientImpl(endpoint, accessKey, secretKey);

//判断指定的bucket是否存在,ture表示存在
Boolean aBoolean = ossClient.doesBucketExist(bucketName);
System.out.println(aBoolean);