本文介紹如何獲取指定存儲空間(Bucket)的存儲容量以及Bucket內不同存儲類型文件(Object)的數量及其存儲容量。
注意事項
本文以華東1(杭州)外網Endpoint為例。如果您希望通過與OSS同地域的其他阿里云產品訪問OSS,請使用內網Endpoint。關于OSS支持的Region與Endpoint的對應關系,請參見OSS訪問域名、數據中心、開放端口。
本文以從環境變量讀取訪問憑證為例。如何配置訪問憑證,請參見Java配置訪問憑證。
本文以OSS域名新建OSSClient為例。如果您希望通過自定義域名、STS等方式新建OSSClient,請參見新建OSSClient。
要獲取存儲空間的存儲容量,您必須有
oss:GetBucketStat
權限。具體操作,請參見為RAM用戶授權自定義的權限策略。
示例代碼
以下代碼用于獲取examplebucket的存儲容量以及該Bucket內不同存儲類型Object的數量及其存儲容量。
重要
僅Java SDK 3.14.1及以上版本支持返回以下示例代碼中包含的所有屬性。
import com.aliyun.oss.*;
import com.aliyun.oss.common.auth.*;
import com.aliyun.oss.model.BucketStat;
public class Demo {
public static void main(String[] args) throws Exception {
// Endpoint以華東1(杭州)為例,其它Region請按實際情況填寫。
String endpoint = "https://oss-cn-hangzhou.aliyuncs.com";
// 從環境變量中獲取訪問憑證。運行本代碼示例之前,請確保已設置環境變量OSS_ACCESS_KEY_ID和OSS_ACCESS_KEY_SECRET。
EnvironmentVariableCredentialsProvider credentialsProvider = CredentialsProviderFactory.newEnvironmentVariableCredentialsProvider();
// 填寫Bucket名稱,例如examplebucket。
String bucketName = "examplebucket";
// 填寫Bucket所在地域。以華東1(杭州)為例,Region填寫為cn-hangzhou。
String region = "cn-hangzhou";
// 創建OSSClient實例。
ClientBuilderConfiguration clientBuilderConfiguration = new ClientBuilderConfiguration();
clientBuilderConfiguration.setSignatureVersion(SignVersion.V4);
OSS ossClient = OSSClientBuilder.create()
.endpoint(endpoint)
.credentialsProvider(credentialsProvider)
.clientConfiguration(clientBuilderConfiguration)
.region(region)
.build();
try {
BucketStat stat = ossClient.getBucketStat(bucketName);
// 獲取Bucket的總存儲量,單位為字節。
System.out.println("StorageSize:"+stat.getStorageSize());
// 獲取Bucket中總的Object數量。
System.out.println("ObjectCount:"+stat.getObjectCount());
// 獲取Bucket中已經初始化但還未完成(Complete)或者還未中止(Abort)的Multipart Upload數量。
System.out.println("MultipartUploadCount:"+stat.getMultipartUploadCount());
// 獲取標準存儲類型Object的存儲量,單位為字節。
System.out.println("StandardStorage:"+stat.getStandardStorage());
// 獲取標準存儲類型的Object的數量。
System.out.println("StandardObjectCount:"+stat.getStandardObjectCount());
// 獲取Bucket中Live Channel的數量。
System.out.println("LiveChannelCount:"+stat.getLiveChannelCount());
// 此次調用獲取到的存儲信息的時間點,格式為時間戳,單位為秒。
System.out.println("LastModifiedTime:"+stat.getLastModifiedTime());
// 獲取低頻存儲類型Object的計費存儲量,單位為字節。
System.out.println("InfrequentAccessStorage:"+stat.getInfrequentAccessStorage());
// 獲取低頻存儲類型Object的實際存儲量,單位為字節。
System.out.println("InfrequentAccessRealStorage:"+stat.getInfrequentAccessRealStorage());
// 獲取低頻存儲類型的Object數量。
System.out.println("InfrequentAccessObjectCount:"+stat.getInfrequentAccessObjectCount());
// 獲取歸檔存儲類型Object的計費存儲量,單位為字節。
System.out.println("ArchiveStorage:"+stat.getArchiveStorage());
// 獲取歸檔存儲類型Object的實際存儲量,單位為字節。
System.out.println("ArchiveRealStorage:"+stat.getArchiveRealStorage());
// 獲取歸檔存儲類型的Object數量。
System.out.println("ArchiveObjectCount:"+stat.getArchiveObjectCount());
// 獲取冷歸檔存儲類型Object的計費存儲量,單位為字節。
System.out.println("ColdArchiveStorage:"+stat.getColdArchiveStorage());
// 獲取冷歸檔存儲類型Object的實際存儲量,單位為字節。
System.out.println("ColdArchiveRealStorage:"+stat.getColdArchiveRealStorage());
// 獲取冷歸檔存儲類型的Object數量。
System.out.println("ColdArchiveObjectCount:"+stat.getColdArchiveObjectCount());
} catch (OSSException oe) {
System.out.println("Caught an OSSException, which means your request made it to OSS, "
+ "but was rejected with an error response for some reason.");
System.out.println("Error Message:" + oe.getErrorMessage());
System.out.println("Error Code:" + oe.getErrorCode());
System.out.println("Request ID:" + oe.getRequestId());
System.out.println("Host ID:" + oe.getHostId());
} catch (ClientException ce) {
System.out.println("Caught an ClientException, which means the client encountered "
+ "a serious internal problem while trying to communicate with OSS, "
+ "such as not being able to access the network.");
System.out.println("Error Message:" + ce.getMessage());
} finally {
if (ossClient != null) {
ossClient.shutdown();
}
}
}
}
相關文檔
關于獲取指定Bucket的存儲容量以及該Bucket內不同存儲類型Object的數量及其存儲容量的API接口說明,請參見GetBucketStat。
文檔內容是否對您有幫助?