最近更新时间:2021-12-16 11:41:52
/**
* 判断一个object是否存在
*/
public boolean objectExists() {
// yourEndpoint填写Bucket所在地域对应的Endpoint。以中国(北京)为例,Endpoint填写为ks3-cn-beijing.ksyuncs.com。如果使用自定义域名,设置endpoint为自定义域名,同时设置domainMode为true
String endpoint = "yourEndpoint";
// 金山云账号AccessKey拥有所有API的访问权限,风险很高。强烈建议您创建并使用子账号账号进行 API 访问或日常运维,请登录 https://uc.console.ksyun.com/pro/iam/#/user/list 创建子账号。
String accessKeyId = "yourAccessKeyId";
String accessKeySecret = "yourAccessKeySecret";
// 创建Ks3ClientConfig 实例。
Ks3ClientConfig config = new Ks3ClientConfig();
// 设置域名
config.setEndpoint(endpoint);
// 创建Ks3Client实例
Ks3 client = new Ks3Client(accessKeyId, accessKeySecret, config);
// 指定桶名和文件名
try {
HeadObjectRequest request = new HeadObjectRequest("<bucket名称>","<object名称>");
// 发起 head 请求
client.headObject(request);
// 不抛错就证明文件存在
return true;
} catch (NotFoundException e) {
// 抛NotFoundException意味着文件不存在
return false;
}
}
纯净模式