skills.vishalvoidskills/vishalvoid
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-java

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

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

Explore other random skills

All skillsMy patterns