Technical & DevelopmentIntermediate
azure-storage-blob-java
Blob storage for file management
Developer Setup
Setup & Installation
bash
npx skills add https://github.com/microsoft/skills --skill azure-storage-blob-javanpx skills add https://github.com/microsoft/skills --skill azure-storage-blob-javaOr paste this URL into your assistant to install:
Overview
What This Skill Does
Java SDK for Azure Blob Storage. Handles uploading, downloading, listing, and managing blobs and containers. Supports streaming I/O, SAS token generation, metadata, leases, and copy operations.
Application
When to use this Skill
- Configuring integration settings for custom agent workflows.
- Optimizing query execution and response latency in production.
- Developing clean, standard-compliant implementations for enterprise services.
- Troubleshooting connection timeouts and authentication handshakes.
- Monitoring API rate limits and execution pipelines programmatically.
Documentation
Show Skills.md file
Azure Storage Blob SDK for Java
Build blob storage applications using the Azure Storage Blob SDK for Java.
Installation
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-storage-blob</artifactId>
<version>12.33.0</version>
</dependency>
Client Creation
BlobServiceClient
import com.azure.storage.blob.BlobServiceClient;
import com.azure.storage.blob.BlobServiceClientBuilder;
// With SAS token
BlobServiceClient serviceClient = new BlobServiceClientBuilder()
.endpoint("<storage-account-url>")
.sasToken("<sas-token>")
.buildClient();
// With connection string
BlobServiceClient serviceClient = new BlobServiceClientBuilder()
.connectionString("<connection-string>")
.buildClient();
Lines 1 - 33 of 394
Recommendations