Copiez des objets au sein d'un même bucket ou entre des buckets situés dans la même région.
Notes
Cette rubrique utilise l'endpoint public de la région Chine (Hangzhou). Pour accéder à OSS depuis d'autres services Alibaba Cloud dans la même région, utilisez un endpoint interne. Pour plus de détails sur les régions et endpoints pris en charge, consultez Régions et endpoints.
Dans cette rubrique, les identifiants d'accès sont obtenus à partir des variables d'environnement. Pour plus d'informations, consultez Configurer les identifiants d'accès.
Cette rubrique illustre la création d'une instance OSSClient avec un endpoint OSS. Pour d'autres configurations, telles que l'utilisation d'un domaine personnalisé ou l'authentification via des identifiants du Security Token Service (STS), consultez Configuration du client.
Vous devez disposer des autorisations de lecture sur l'objet source et des autorisations de lecture/écriture sur le bucket de destination.
Les buckets source et de destination ne doivent pas avoir de politiques de rétention configurées. Sinon, la copie échoue et l'erreur The object you specified is immutable. est renvoyée.
La copie interrégionale n'est pas prise en charge. Par exemple, vous ne pouvez pas copier un objet d'un bucket situé en Chine (Hangzhou) vers un bucket situé en Chine (Qingdao).
Copier un petit objet
Utilisez ossClient.copyObject pour copier des objets de moins de 1 Go. Cette méthode accepte les paramètres de deux manières :
|
Spécification des paramètres |
Description |
|
CopyObjectResult copyObject(String sourceBucketName, String sourceKey, String destinationBucketName, String destinationKey) |
Spécifie les buckets et objets source et de destination. Copie le contenu et les métadonnées de l'objet source (copie simple). |
|
CopyObjectResult copyObject(CopyObjectRequest copyObjectRequest) |
Spécifie les métadonnées et les conditions de copie pour l'objet de destination. Si la source et la destination correspondent au même objet, remplace les métadonnées de la source. |
Paramètres de CopyObjectRequest :
|
Paramètre |
Description |
Méthode |
|
sourceBucketName |
Nom du bucket source. |
setSourceBucketName(String sourceBucketName) |
|
sourceKey |
Nom de l'objet source. |
setSourceKey(String sourceKey) |
|
destinationBucketName |
Nom du bucket de destination. |
setDestinationBucketName(String destinationBucketName) |
|
destinationKey |
Nom de l'objet de destination. |
setDestinationKey(String destinationKey) |
|
newObjectMetadata |
Métadonnées de l'objet de destination. |
setNewObjectMetadata(ObjectMetadata newObjectMetadata) |
|
matchingETagConstraints |
Condition de copie. Copie l'objet uniquement si l'ETag source correspond à la valeur spécifiée. Sinon, renvoie une erreur. |
setMatchingETagConstraints(List<String> matchingETagConstraints) |
|
nonmatchingEtagConstraints |
Condition de copie. Copie l'objet uniquement si l'ETag source ne correspond pas à la valeur spécifiée. Sinon, renvoie une erreur. |
setNonmatchingETagConstraints(List<String> nonmatchingEtagConstraints) |
|
unmodifiedSinceConstraint |
Condition de copie. Copie l'objet uniquement si la source n'a pas été modifiée depuis l'heure spécifiée. Sinon, renvoie une erreur. |
setUnmodifiedSinceConstraint(Date unmodifiedSinceConstraint) |
|
modifiedSinceConstraint |
Condition de copie. Copie l'objet uniquement si la source a été modifiée après l'heure spécifiée. Sinon, renvoie une erreur. |
setModifiedSinceConstraint(Date modifiedSinceConstraint) |
Paramètres de CopyObjectResult :
|
Paramètre |
Description |
Méthode |
|
etag |
Identifiant unique de l'objet. |
String getETag() |
|
lastModified |
Dernière heure de modification de l'objet. |
Date getLastModified() |
Copiez les petits objets en utilisant l'une des méthodes suivantes :
-
Copie simple
L'exemple suivant copie
srcexampleobject.txtdepuissrcexamplebucketversdesexampleobject.txtdansdesexamplebucket.import com.aliyun.oss.*; import com.aliyun.oss.common.auth.*; import com.aliyun.oss.common.comm.SignVersion; import com.aliyun.oss.model.*; public class Demo { public static void main(String[] args) throws Exception { // The China (Hangzhou) region is used as an example. Specify the actual endpoint. String endpoint = "https://oss-cn-hangzhou.aliyuncs.com"; // Obtain access credentials from environment variables. Before you run the sample code, make sure that the OSS_ACCESS_KEY_ID and OSS_ACCESS_KEY_SECRET environment variables are configured. EnvironmentVariableCredentialsProvider credentialsProvider = CredentialsProviderFactory.newEnvironmentVariableCredentialsProvider(); // Specify the name of the source bucket. String sourceBucketName = "srcexamplebucket"; // Specify the full path of the source object. The full path cannot contain the bucket name. String sourceKey = "srcexampleobject.txt"; // Specify the name of the destination bucket. The destination bucket must be in the same region as the source bucket. String destinationBucketName = "desexamplebucket"; // Specify the full path of the destination object. The full path cannot contain the bucket name. String destinationKey = "desexampleobject.txt"; // Specify the region where the bucket is located. For example, if the bucket is in the China (Hangzhou) region, set the region to cn-hangzhou. String region = "cn-hangzhou"; // Create an OSSClient instance. // When the OSSClient instance is no longer used, call the shutdown method to release resources. ClientBuilderConfiguration clientBuilderConfiguration = new ClientBuilderConfiguration(); clientBuilderConfiguration.setSignatureVersion(SignVersion.V4); OSS ossClient = OSSClientBuilder.create() .endpoint(endpoint) .credentialsProvider(credentialsProvider) .clientConfiguration(clientBuilderConfiguration) .region(region) .build(); try { // Copy the file. CopyObjectResult result = ossClient.copyObject(sourceBucketName, sourceKey, destinationBucketName, destinationKey); System.out.println("ETag: " + result.getETag() + " LastModified: " + result.getLastModified()); } catch (OSSException oe) { System.out.println("Caught an OSSException, which means your request made it to OSS, " + "but was rejected with an error response for some reason."); System.out.println("Error Message:" + oe.getErrorMessage()); System.out.println("Error Code:" + oe.getErrorCode()); System.out.println("Request ID:" + oe.getRequestId()); System.out.println("Host ID:" + oe.getHostId()); } catch (ClientException ce) { System.out.println("Caught an ClientException, which means the client encountered " + "a serious internal problem while trying to communicate with OSS, " + "such as not being able to access the network."); System.out.println("Error Message:" + ce.getMessage()); } finally { if (ossClient != null) { ossClient.shutdown(); } } } } -
Copie à l'aide de
CopyObjectRequestL'exemple suivant utilise
CopyObjectRequestpour copiersrcexampleobject.txtdepuissrcexamplebucketversdesexampleobject.txtdansdesexamplebucket.import com.aliyun.oss.*; import com.aliyun.oss.common.auth.*; import com.aliyun.oss.common.comm.SignVersion; import com.aliyun.oss.model.*; public class Demo { public static void main(String[] args) throws Exception { // The China (Hangzhou) region is used as an example. Specify the actual endpoint. String endpoint = "https://oss-cn-hangzhou.aliyuncs.com"; // Obtain access credentials from environment variables. Before you run the sample code, make sure that the OSS_ACCESS_KEY_ID and OSS_ACCESS_KEY_SECRET environment variables are configured. EnvironmentVariableCredentialsProvider credentialsProvider = CredentialsProviderFactory.newEnvironmentVariableCredentialsProvider(); // Specify the name of the source bucket. String sourceBucketName = "srcexamplebucket"; // Specify the full path of the source object. The full path cannot contain the bucket name. String sourceKey = "srcexampleobject.txt"; // Specify the name of the destination bucket. The destination bucket must be in the same region as the source bucket. String destinationBucketName = "desexamplebucket"; // Specify the full path of the destination object. The full path cannot contain the bucket name. String destinationKey = "desexampleobject.txt"; // Specify the region where the bucket is located. For example, if the bucket is in the China (Hangzhou) region, set the region to cn-hangzhou. String region = "cn-hangzhou"; // Create an OSSClient instance. // When the OSSClient instance is no longer used, call the shutdown method to release resources. ClientBuilderConfiguration clientBuilderConfiguration = new ClientBuilderConfiguration(); clientBuilderConfiguration.setSignatureVersion(SignVersion.V4); OSS ossClient = OSSClientBuilder.create() .endpoint(endpoint) .credentialsProvider(credentialsProvider) .clientConfiguration(clientBuilderConfiguration) .region(region) .build(); try { // Create a CopyObjectRequest object. CopyObjectRequest copyObjectRequest = new CopyObjectRequest(sourceBucketName, sourceKey, destinationBucketName, destinationKey); // Set new file metadata. ObjectMetadata meta = new ObjectMetadata(); meta.setContentType("text/plain"); // Specify whether to overwrite the destination object if it has the same name. In this example, this parameter is set to true, which indicates that the destination object cannot be overwritten. // meta.setHeader("x-oss-forbid-overwrite", "true"); // Specify the source address for the copy operation. // meta.setHeader(OSSHeaders.COPY_OBJECT_SOURCE, "/examplebucket/recode-test.txt"); // If the ETag of the source object matches the specified ETag, the copy operation is performed and 200 OK is returned. // meta.setHeader(OSSHeaders.COPY_OBJECT_SOURCE_IF_MATCH, "5B3C1A2E053D763E1B002CC607C5****"); // If the ETag of the source object does not match the specified ETag, the copy operation is performed and 200 OK is returned. // meta.setHeader(OSSHeaders.COPY_OBJECT_SOURCE_IF_NONE_MATCH, "5B3C1A2E053D763E1B002CC607C5****"); // If the specified time is the same as or later than the actual modification time of the object, the object is copied and 200 OK is returned. // meta.setHeader(OSSHeaders.COPY_OBJECT_SOURCE_IF_UNMODIFIED_SINCE, "2021-12-09T07:01:56.000Z"); // If the source object has been modified after the specified time, the copy operation is performed. // meta.setHeader(OSSHeaders.COPY_OBJECT_SOURCE_IF_MODIFIED_SINCE, "2021-12-09T07:01:56.000Z"); // Specify how to set the metadata of the destination object. In this example, this parameter is set to COPY, which indicates that the metadata of the source object is copied to the destination object. // meta.setHeader(OSSHeaders.COPY_OBJECT_METADATA_DIRECTIVE, "COPY"); // Specify the server-side encryption algorithm that OSS uses to create the destination object. // meta.setHeader(OSSHeaders.OSS_SERVER_SIDE_ENCRYPTION, ObjectMetadata.KMS_SERVER_SIDE_ENCRYPTION); // The customer master key (CMK) managed by KMS. This parameter is valid only when x-oss-server-side-encryption is set to KMS. // meta.setHeader(OSSHeaders.OSS_SERVER_SIDE_ENCRYPTION_KEY_ID, "9468da86-3509-4f8d-a61e-6eab1eac****"); // Specify the access permissions for the destination object when it is created in OSS. In this example, this parameter is set to Private, which indicates that only the object owner and authorized users have read and write permissions. Other users cannot access the object. // meta.setHeader(OSSHeaders.OSS_OBJECT_ACL, CannedAccessControlList.Private); // Specify the storage class of the object. In this example, this parameter is set to Standard. // meta.setHeader(OSSHeaders.OSS_STORAGE_CLASS, StorageClass.Standard); // Specify the tags for the object. You can specify multiple tags. // meta.setHeader(OSSHeaders.OSS_TAGGING, "a:1"); // Specify how to set the tags for the destination object. In this example, this parameter is set to COPY, which indicates that the tags of the source object are copied to the destination object. // meta.setHeader(OSSHeaders.COPY_OBJECT_TAGGING_DIRECTIVE, "COPY"); copyObjectRequest.setNewObjectMetadata(meta); // Copy the file. CopyObjectResult result = ossClient.copyObject(copyObjectRequest); System.out.println("ETag: " + result.getETag() + " LastModified: " + result.getLastModified()); } catch (OSSException oe) { System.out.println("Caught an OSSException, which means your request made it to OSS, " + "but was rejected with an error response for some reason."); System.out.println("Error Message:" + oe.getErrorMessage()); System.out.println("Error Code:" + oe.getErrorCode()); System.out.println("Request ID:" + oe.getRequestId()); System.out.println("Host ID:" + oe.getHostId()); } catch (ClientException ce) { System.out.println("Caught an ClientException, which means the client encountered " + "a serious internal problem while trying to communicate with OSS, " + "such as not being able to access the network."); System.out.println("Error Message:" + ce.getMessage()); } finally { if (ossClient != null) { ossClient.shutdown(); } } } }
Copier de grands objets
Pour les objets de plus de 1 Go, utilisez la copie multipartie (UploadPartCopy). Le processus comporte trois étapes :
Initialisez une tâche de copie multipartie avec
ossClient.initiateMultipartUpload.Copiez chaque partie avec
ossClient.uploadPartCopy. Toutes les parties, sauf la dernière, doivent être supérieures à 100 Ko.Finalisez la tâche de copie multipartie avec
ossClient.completeMultipartUpload.
L'exemple suivant utilise la copie multipartie pour copier srcexampleobject.txt depuis srcexamplebucket vers desexampleobject.txt dans desexamplebucket.
import com.aliyun.oss.*;
import com.aliyun.oss.common.auth.*;
import com.aliyun.oss.common.comm.SignVersion;
import com.aliyun.oss.model.*;
import java.util.ArrayList;
import java.util.List;
public class Demo {
public static void main(String[] args) throws Exception {
// The endpoint of the China (Hangzhou) region is used as an example. For other regions, specify the actual endpoint.
String endpoint = "https://oss-cn-hangzhou.aliyuncs.com";
// Obtain access credentials from environment variables. Before you run this code, ensure that the OSS_ACCESS_KEY_ID and OSS_ACCESS_KEY_SECRET environment variables are set.
EnvironmentVariableCredentialsProvider credentialsProvider = CredentialsProviderFactory.newEnvironmentVariableCredentialsProvider();
// Specify the name of the source bucket.
String sourceBucketName = "srcexamplebucket";
// Specify the full path of the source object. The full path cannot include the bucket name.
String sourceKey = "srcexampleobject.txt";
// Specify the name of the destination bucket. The destination bucket must be in the same region as the source bucket.
String destinationBucketName = "desexamplebucket";
// Specify the full path of the destination object. The full path cannot include the bucket name.
String destinationKey = "desexampleobject.txt";
// Specify the region where the bucket is located. This example uses the China (Hangzhou) region. Set Region to cn-hangzhou.
String region = "cn-hangzhou";
// Create an OSSClient instance.
// When the OSSClient instance is no longer needed, call the shutdown method to release resources.
ClientBuilderConfiguration clientBuilderConfiguration = new ClientBuilderConfiguration();
clientBuilderConfiguration.setSignatureVersion(SignVersion.V4);
OSS ossClient = OSSClientBuilder.create()
.endpoint(endpoint)
.credentialsProvider(credentialsProvider)
.clientConfiguration(clientBuilderConfiguration)
.region(region)
.build();
try {
ObjectMetadata objectMetadata = ossClient.getObjectMetadata(sourceBucketName, sourceKey);
// Get the size of the file to be copied.
long contentLength = objectMetadata.getContentLength();
// Set the part size to 10 MB. The unit is bytes.
long partSize = 1024 * 1024 * 10;
// Calculate the total number of parts.
int partCount = (int) (contentLength / partSize);
if (contentLength % partSize != 0) {
partCount++;
}
System.out.println("total part count:" + partCount);
// Initialize the copy task. You can use InitiateMultipartUploadRequest to specify the metadata of the destination object.
InitiateMultipartUploadRequest initiateMultipartUploadRequest = new InitiateMultipartUploadRequest(destinationBucketName, destinationKey);
// Copy the ContentType and UserMetadata of the source file. By default, multipart copy does not copy them.
ObjectMetadata metadata = new ObjectMetadata();
metadata.setContentType(objectMetadata.getContentType());
metadata.setUserMetadata(objectMetadata.getUserMetadata());
initiateMultipartUploadRequest.setObjectMetadata(metadata);
InitiateMultipartUploadResult initiateMultipartUploadResult = ossClient.initiateMultipartUpload(initiateMultipartUploadRequest);
String uploadId = initiateMultipartUploadResult.getUploadId();
// Copy parts.
List<PartETag> partETags = new ArrayList<PartETag>();
for (int i = 0; i < partCount; i++) {
// Calculate the size of each part.
long skipBytes = partSize * i;
long size = partSize < contentLength - skipBytes ? partSize : contentLength - skipBytes;
// Create an UploadPartCopyRequest. You can use UploadPartCopyRequest to specify conditions.
UploadPartCopyRequest uploadPartCopyRequest =
new UploadPartCopyRequest(sourceBucketName, sourceKey, destinationBucketName, destinationKey);
uploadPartCopyRequest.setUploadId(uploadId);
uploadPartCopyRequest.setPartSize(size);
uploadPartCopyRequest.setBeginIndex(skipBytes);
uploadPartCopyRequest.setPartNumber(i + 1);
//Map headers = new HashMap();
// Specify the source address for the copy operation.
// headers.put(OSSHeaders.COPY_OBJECT_SOURCE, "/examplebucket/desexampleobject.txt");
// Specify the copy range of the source object. For example, set bytes=0-1023 to copy the first 1024 bytes.
// headers.put(OSSHeaders.COPY_SOURCE_RANGE, "bytes=0-1023");
// If the ETag of the source object matches the ETag that you provide, the copy operation is performed and 200 OK is returned.
// headers.put(OSSHeaders.COPY_OBJECT_SOURCE_IF_MATCH, "5B3C1A2E053D763E1B002CC607C5****");
// If the ETag of the source object does not match the ETag that you provide, the copy operation is performed and 200 OK is returned.
// headers.put(OSSHeaders.COPY_OBJECT_SOURCE_IF_NONE_MATCH, "5B3C1A2E053D763E1B002CC607C5****");
// If the specified time is the same as or later than the actual modification time of the file, the file is copied and 200 OK is returned.
// headers.put(OSSHeaders.COPY_OBJECT_SOURCE_IF_UNMODIFIED_SINCE, "2021-12-09T07:01:56.000Z");
// If the source object has been modified after the time that you specified, the copy operation is performed.
// headers.put(OSSHeaders.COPY_OBJECT_SOURCE_IF_MODIFIED_SINCE, "2021-12-09T07:01:56.000Z");
// uploadPartCopyRequest.setHeaders(headers);
UploadPartCopyResult uploadPartCopyResult = ossClient.uploadPartCopy(uploadPartCopyRequest);
// Save the returned ETag of the part to partETags.
partETags.add(uploadPartCopyResult.getPartETag());
}
// Complete the multipart copy task.
CompleteMultipartUploadRequest completeMultipartUploadRequest = new CompleteMultipartUploadRequest(
destinationBucketName, destinationKey, uploadId, partETags);
ossClient.completeMultipartUpload(completeMultipartUploadRequest);
} catch (OSSException oe) {
System.out.println("Caught an OSSException, which means your request made it to OSS, "
+ "but was rejected with an error response for some reason.");
System.out.println("Error Message:" + oe.getErrorMessage());
System.out.println("Error Code:" + oe.getErrorCode());
System.out.println("Request ID:" + oe.getRequestId());
System.out.println("Host ID:" + oe.getHostId());
} catch (ClientException ce) {
System.out.println("Caught an ClientException, which means the client encountered "
+ "a serious internal problem while trying to communicate with OSS, "
+ "such as not being able to access the network.");
System.out.println("Error Message:" + ce.getMessage());
} finally {
if (ossClient != null) {
ossClient.shutdown();
}
}
}
}
Références
-
Copier un petit objet
Référence API : CopyObject.
-
Copier de grands objets
Exemple de code complet : Exemple GitHub.
Référence API : UploadPartCopy.