API | 操作名 | 操作描述 |
恢复归档对象 | 将归档类型的对象取回访问 |
// 存储桶名称,由bucketname-appid 组成,appid必须填入,可以在COS控制台查看存储桶名称。 https://console.tencentcloud.com/cos5/bucketString bucket = "examplebucket-1250000000";String cosPath = "exampleobject"; //对象在存储桶中的位置标识符,即对象键。RestoreRequest restoreRequest = new RestoreRequest(bucket, cosPath);restoreRequest.setExpireDays(5); // 保留5天restoreRequest.setTier(RestoreConfigure.Tier.Standard); // 标准恢复模式cosXmlService.restoreObjectAsync(restoreRequest, new CosXmlResultListener() {@Overridepublic void onSuccess(CosXmlRequest request, CosXmlResult result) {RestoreResult restoreResult = (RestoreResult) result;}// 如果您使用 kotlin 语言来调用,请注意回调方法中的异常是可空的,否则不会回调 onFail 方法,即:// clientException 的类型为 CosXmlClientException?,serviceException 的类型为 CosXmlServiceException?@Overridepublic void onFail(CosXmlRequest cosXmlRequest,@Nullable CosXmlClientException clientException,@Nullable CosXmlServiceException serviceException) {if (clientException != null) {clientException.printStackTrace();} else {serviceException.printStackTrace();}}});
本页内容是否解决了您的问题?