本文整理汇总了Java中com.qcloud.cos.http.DefaultCosHttpClient类的典型用法代码示例。如果您正苦于以下问题:Java DefaultCosHttpClient类的具体用法?Java DefaultCosHttpClient怎么用?Java DefaultCosHttpClient使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
DefaultCosHttpClient类属于com.qcloud.cos.http包,在下文中一共展示了DefaultCosHttpClient类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: setConfig
import com.qcloud.cos.http.DefaultCosHttpClient; //导入依赖的package包/类
public void setConfig(ClientConfig config) {
this.config = config;
this.fileOp.setConfig(config);
this.folderOp.setConfig(config);
this.client.shutdown();
this.client = new DefaultCosHttpClient(config);
this.fileOp.setHttpClient(this.client);
this.folderOp.setHttpClient(this.client);
}
示例2: COSClient
import com.qcloud.cos.http.DefaultCosHttpClient; //导入依赖的package包/类
public COSClient(ClientConfig config, Credentials cred) {
this.config = config;
this.cred = cred;
this.client = new DefaultCosHttpClient(config);
fileOp = new FileOp(this.config, this.cred, this.client);
folderOp = new FolderOp(this.config, this.cred, this.client);
}
示例3: setConfig
import com.qcloud.cos.http.DefaultCosHttpClient; //导入依赖的package包/类
public void setConfig(ClientConfig config) {
this.config = config;
this.fileOp.setConfig(config);
this.folderOp.setConfig(config);
this.client.shutdown();
this.client = new DefaultCosHttpClient(config);
this.fileOp.setHttpClient(this.client);
this.folderOp.setHttpClient(this.client);
}
示例4: COSClient
import com.qcloud.cos.http.DefaultCosHttpClient; //导入依赖的package包/类
public COSClient(ClientConfig config, Credentials cred) {
this.config = config;
this.cred = cred;
this.client = new DefaultCosHttpClient(config);
fileOp = new FileOp(this.config, this.cred, this.client);
folderOp = new FolderOp(this.config, this.cred, this.client);
}
示例5: COSClient
import com.qcloud.cos.http.DefaultCosHttpClient; //导入依赖的package包/类
public COSClient(COSCredentials cred, ClientConfig clientConfig) {
super();
this.cred = cred;
this.clientConfig = clientConfig;
this.cosHttpClient = new DefaultCosHttpClient(clientConfig);
}