すべてのプロダクト
Search
ドキュメントセンター

Object Storage Service:部分ダウンロード

最終更新日:Dec 10, 2024

範囲ダウンロードを使用して、オブジェクトから特定の範囲のデータをダウンロードできます。

使用上の注意

  • このトピックでは、中国 (杭州) リージョンのパブリックエンドポイントを使用します。 OSSと同じリージョンにある他のAlibaba CloudサービスからOSSにアクセスする場合は、内部エンドポイントを使用します。 OSSリージョンとエンドポイントの詳細については、「リージョンとエンドポイント」をご参照ください。

  • このトピックでは、OSSエンドポイントを使用してOSSClientインスタンスを作成します。 カスタムドメイン名またはSTS (Security Token Service) を使用してOSSClientインスタンスを作成する場合は、「初期化」をご参照ください。

  • 範囲のダウンロードを実行するには、oss:GetObject権限が必要です。 詳細については、「RAMユーザーへのカスタムポリシーのアタッチ」をご参照ください。

サンプルコード

特定の範囲のオブジェクトデータをダウンロードする方法の例を次に示します。

using Aliyun.OSS;
// Specify the endpoint of the region in which the bucket is located. For example, if the bucket is located in the China (Hangzhou) region, set the endpoint to https://oss-cn-hangzhou.aliyuncs.com. 
var endpoint = "yourEndpoint";
// 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. 
var accessKeyId = Environment.GetEnvironmentVariable("OSS_ACCESS_KEY_ID");
var accessKeySecret = Environment.GetEnvironmentVariable("OSS_ACCESS_KEY_SECRET");
// Specify the name of the bucket. Example: examplebucket. 
var bucketName = "examplebucket";
// Specify the full path of the object. Do not include the bucket name in the full path. Example: exampledir/exampleobject.txt. 
var objectName = "exampledir/exampleobject.txt";
// Download the object to D:\\localpath. After the object is downloaded, the local file is named examplefile.txt. If a file with the same name already exists, the downloaded object overwrites the file. Otherwise, the downloaded object is saved in the path. 
// If you do not specify a path for the downloaded object, the downloaded object is saved to the path of the project to which the sample program belongs. 
var downloadFilename = "D:\\localpath\\examplefile.txt";
// Specify the region in which the bucket is located. For example, if the bucket is located in the China (Hangzhou) region, set the region to cn-hangzhou.
const string region = "cn-hangzhou";

// Create a ClientConfiguration instance and modify the default parameters based on your requirements.
var conf = new ClientConfiguration();

// Use the signature algorithm V4.
conf.SignatureVersion = SignatureVersion.V4;

// Create an OSSClient instance.
var client = new OssClient(endpoint, accessKeyId, accessKeySecret, conf);
c.SetRegion(region);
try
{
    var getObjectRequest = new GetObjectRequest(bucketName, objectName);
    // Set the range to byte 20 to byte 100. 
    getObjectRequest.SetRange(20, 100);
    // Start range download. You can use setRange in getObjectRequest to perform range download and resumable download. 
    var obj = client.GetObject(getObjectRequest);
    // Download data and write the data to the file. 
    using (var requestStream = obj.Content)
    {
        byte[] buf = new byte[1024];
        var fs = File.Open(downloadFilename, FileMode.OpenOrCreate);
        var len = 0;
        while ((len = requestStream.Read(buf, 0, 1024)) != 0)
        {
            fs.Write(buf, 0, len);
        }
        fs.Close();
    }
    Console.WriteLine("Get object succeeded");
}
catch (Exception ex)
{
    Console.WriteLine("Get object failed. {0}", ex.Message);
}

次の表に、GetObjectRequestに設定できるパラメーターを示します。

パラメーター

説明

範囲

ダウンロードするオブジェクトのデータの範囲。

ModifiedSinceConstraint

オブジェクトのダウンロード条件。 指定された時刻が実際のオブジェクト変更時刻よりも早い場合、オブジェクトをダウンロードできます。 それ以外の場合、HTTPステータスコード304 Not Modifiedが返されます。

UnmodifiedSinceConstraint

オブジェクトのダウンロード条件。 指定された時間が実際のオブジェクト変更時間と同じかそれ以降の場合、オブジェクトをダウンロードできます。 それ以外の場合、HTTPステータスコード412前提条件が返されます。

MatchingETagConstraints

オブジェクトのダウンロード条件。 指定されたETagがオブジェクトのETagと一致する場合、オブジェクトをダウンロードできます。 それ以外の場合、HTTPステータスコード412前提条件が返されます。

NonmatchingEtagConstraints

オブジェクトのダウンロード条件。 指定されたETagがオブジェクトのETagと一致しない場合、オブジェクトをダウンロードできます。 それ以外の場合、HTTPステータスコード304 Not Modifiedが返されます。

ResponseHeaderOverrides

応答を返すヘッダー。

関連ドキュメント

  • 範囲のダウンロードを実行するために使用される完全なサンプルコードについては、『GitHub』をご参照ください。

  • 範囲ダウンロードを実行するために呼び出すことができるAPI操作の詳細については、「GetObject」をご参照ください。