-
Notifications
You must be signed in to change notification settings - Fork 142
/
HeadObjectDemo.java
30 lines (26 loc) · 1.09 KB
/
HeadObjectDemo.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package com.qcloud.cos.demo;
import com.qcloud.cos.COSClient;
import com.qcloud.cos.ClientConfig;
import com.qcloud.cos.auth.BasicCOSCredentials;
import com.qcloud.cos.auth.COSCredentials;
import com.qcloud.cos.region.Region;
public class HeadObjectDemo {
public static void main(String[] args) {
headObject();
}
private static void headObject() {
// 1 初始化用户身份信息(secretId, secretKey)
COSCredentials cred = new BasicCOSCredentials("AKIDXXXXXXXX", "1A2Z3YYYYYYYYYY");
// 2 设置bucket的区域, COS地域的简称请参照 https://www.qcloud.com/document/product/436/6224
ClientConfig clientConfig = new ClientConfig(new Region("ap-beijing-1"));
// 3 生成cos客户端
COSClient cosclient = new COSClient(cred, clientConfig);
// bucket名需包含appid
String bucketName = "mybucket-12500000000";
String key = "aaa/bbb.txt";
boolean is_exist = cosclient.doesObjectExist(bucketName, key);
System.out.println(is_exist);
// 关闭客户端
cosclient.shutdown();
}
}