:bug:紧急修复多个对象存储上传失败问题

This commit is contained in:
hello-hao
2022-02-16 16:53:31 +08:00
parent 6df3267b18
commit 43cfc832a8
6 changed files with 20 additions and 21 deletions
@@ -73,16 +73,16 @@ public class COSImageupload {
COSCredentials cred = new BasicCOSCredentials(secretId, secretKey);
Region region = new Region(k.getEndpoint());
ClientConfig clientConfig = new ClientConfig(region);
COSClient cosClient = new COSClient(cred, clientConfig);
COSClient cos = new COSClient(cred, clientConfig);
ListObjectsRequest listObjectsRequest = new ListObjectsRequest();
listObjectsRequest.setBucketName(k.getBucketname());
listObjectsRequest.setDelimiter("/");
listObjectsRequest.setMaxKeys(1);
ObjectListing objectListing = null;
try {
objectListing = cosClient.listObjects(listObjectsRequest);
objectListing = cos.listObjects(listObjectsRequest);
ret = 1;
cosClient = cosClient;
cosClient = cos;
key = k;
} catch (Exception e) {
System.out.println("COS Object Is null");