com.qcloud.cos.demo.ci.ClientUtils Maven / Gradle / Ivy
package com.qcloud.cos.demo.ci;
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;
/**
* 仅为demo演示所用 在demo中每次执行都会创建client对象
* COSClient 是线程安全的类,允许多线程访问同一实例。
* 因为实例内部维持了一个连接池,创建多个实例可能导致程序资源耗尽,请确保程序生命周期内实例只有一个
* 在不再需要使用时,调用 shutdown 方法将其关闭。如果需要新建实例,请先将之前的实例关闭。
*/
public class ClientUtils {
public static COSClient getTestClient() {
// 1 初始化用户身份信息(secretId, secretKey)。
String secretId = "secretId";
String secretKey = "secretKey";
return getCosClient(secretId,secretKey,"ap-guangzhou");
}
public static COSClient getCosClient(String secretId, String secretKey, String _region) {
// 1 初始化用户身份信息(secretId, secretKey)。
COSCredentials cred = new BasicCOSCredentials(secretId, secretKey);
// 2 设置 bucket 的区域, CI 地域的简称请参照 https://cloud.tencent.com/document/product/436/6224
// clientConfig 中包含了设置 region, https(默认 https), 超时, 代理等 set 方法, 使用可参见源码或者常见问题 Java SDK 部分。
Region region = new Region(_region);
ClientConfig clientConfig = new ClientConfig(region);
// 3 生成 cos 客户端。
return new COSClient(cred, clientConfig);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy