Azure Blob storage provides scalable, cost-efficient object storage in the cloud. Store and access unstructured data for your most demanding workloads.
根据预期的数据访问频率,从 4 个存储层进行选择。将性能敏感的数据存储在高级存储层中,将经常访问的数据存储在热存储层中,将不常访问的数据存储在冷和寒存储层中,将极少访问的数据存储在存档存储层中。 通过预留存储容量大幅降低成本。 查看Blob 存储定价 通过...
In order to interact with the Storage Service (Blob, Queue, Message, MessageId, File), you'll need to create an instance of the Service Client class. To make this possible you'll need the Account SAS (shared access signature) string of the Storage Account. Learn more at SAS Token....
您可以將加密選項套用至接受 BlobClientOptions 物件的 BlobServiceClient、BlobContainerClient 或BlobClient 建構函式。 如果程式碼中已經有 BlobClient 物件,但缺乏用戶端加密選項,則可以搭配使用擴充方法與指定的 ClientSideEncryptionOptions 來建立該物件的複本。 這個擴充方法可避免從頭開始建立新 BlobClient 物件所產生...
Blob 客户端库信息: 授予访问权限并连接到 Blob 存储 若要将应用连接到 Blob 存储,请创建BlobServiceClient类的实例。 还可以使用BlobServiceAsyncClient类进行异步编程。 此对象是在存储帐户级别与数据资源交互的起点。 可以将其用于对存储账户及其容器执行操作。 还可以使用服务客户端创建容器客户端或 blob 客户端,具...
若要使用用戶端加密,請建立ClientSideEncryptionOptions物件,並在建立用戶端時使用SpecializedBlobClientOptions進行設定。 您無法在每個 API 中設定加密選項。 其他一切由用戶端程式庫在內部處理。 C# // Your key and key resolver instances, either through Azure Key Vault SDK or an external implementation.IKeyEncr...
//CloudBlobClient 类是 Windows Azure Blob Service 客户端的逻辑表示,我们需要使用它来配置和执行对 Blob Storage 的操作。 CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient(); //CloudBlobContainer 表示一个 Blob Container 对象。
//CloudBlobClient 类是 Windows Azure Blob Service 客户端的逻辑表示,我们需要使用它来配置和执行对 Blob Storage 的操作。CloudBlobClient blobClient=storageAccount.CreateCloudBlobClient(); //CloudBlobContainer 表示一个 Blob Container 对象。CloudBlobContainer container= blobClient.GetContainerReference("picture...
//CloudBlobClient 类是 Windows Azure Blob Service 客户端的逻辑表示,我们需要使用它来配置和执行对 Blob Storage 的操作。CloudBlobClient blobClient=storageAccount.CreateCloudBlobClient(); //CloudBlobContainer 表示一个 Blob Container 对象。CloudBlobContainer container= blobClient.GetContainerReference("picture...
步骤1:确认Azure Blob Storage账户 确认你有一个Azure账户,并且已经创建了一个存储账户,并获取连接字符串。 步骤2:生成BlobClient对象 在Java代码中,使用Azure Storage SDK创建一个BlobClient对象,连接到Azure Blob Storage。 StringconnectionString="DefaultEndpointsProtocol=https;AccountName=<your_account_name>;Accoun...