|
1 | 1 | ---
|
2 |
| -title: How to create a blob in Azure Storage using the client library for Java v7 | Microsoft Docs |
3 |
| -description: Create a storage account and a container in object (Blob) storage. Then use the Azure Storage client library for Java v7 to upload a blob to Azure Storage, download a blob, and list the blobs in a container. |
| 2 | +title: "Quickstart: Azure Blob storage client library for Java SDK v8" |
| 3 | +description: Create a storage account and a container in object (Blob) storage. Then use the Azure Storage client library for Java SDK v8 to upload a blob to Azure Storage, download a blob, and list the blobs in a container. |
4 | 4 | author: mhopkins-msft
|
5 | 5 |
|
6 | 6 | ms.author: mhopkins
|
7 |
| -ms.date: 02/04/2019 |
| 7 | +ms.date: 10/05/2019 |
8 | 8 | ms.service: storage
|
9 | 9 | ms.subservice: blobs
|
10 | 10 | ms.topic: conceptual
|
11 | 11 | ---
|
12 | 12 |
|
13 |
| -# How to upload, download, and list blobs using the client library for Java v7 |
| 13 | +# Quickstart: Azure Blob storage client library for Java SDK v8 |
14 | 14 |
|
15 |
| -In this how-to guide, you learn how to use the client library for Java v7 to upload, download, and list block blobs in a container in Azure Blob storage. |
| 15 | +Get started with the Azure Blob Storage client library for Java. Azure Blob Storage is Microsoft's object storage solution for the cloud. Follow steps to install the package and try out example code for basic tasks. Blob storage is optimized for storing massive amounts of unstructured data. |
16 | 16 |
|
17 |
| -## Prerequisites |
18 |
| - |
19 |
| -If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) before you begin. |
| 17 | +Use the Azure Blob Storage client library for Java to: |
20 | 18 |
|
21 |
| -Also create an Azure storage account in the [Azure portal](https://portal.azure.com/#create/Microsoft.StorageAccount-ARM). For help creating the account, see [Create a storage account](../common/storage-quickstart-create-account.md). |
| 19 | +* Create a container |
| 20 | +* Set permissions on a container |
| 21 | +* Create a blob in Azure Storage |
| 22 | +* Download the blob to your local computer |
| 23 | +* List all of the blobs in a container |
| 24 | +* Delete a container |
22 | 25 |
|
23 |
| -Make sure you have the following prerequisites: |
24 |
| - |
25 |
| -* Install an IDE that has Maven integration. |
| 26 | +## Prerequisites |
26 | 27 |
|
| 28 | +* Azure subscription - [create one for free](https://azure.microsoft.com/free/) |
| 29 | +* Azure Storage account - [create a storage account](https://docs.microsoft.com/azure/storage/common/storage-quickstart-create-account) |
| 30 | +* An IDE that has Maven integration. |
27 | 31 | * Alternatively, install and configure Maven to work from the command line.
|
28 | 32 |
|
29 | 33 | This guide uses [Eclipse](https://www.eclipse.org/downloads/) with the "Eclipse IDE for Java Developers" configuration.
|
@@ -201,6 +205,5 @@ sourceFile.deleteOnExit();
|
201 | 205 | In this article, you learned how to transfer files between a local disk and Azure Blob storage using Java. To learn more about working with Java, continue to our GitHub source code repository.
|
202 | 206 |
|
203 | 207 | > [!div class="nextstepaction"]
|
204 |
| -> [Microsoft Azure Storage SDK v10 for Java](https://github.com/azure/azure-storage-java) |
205 | 208 | > [Java API Reference](https://docs.microsoft.com/java/azure/)
|
206 | 209 | > [Code Samples for Java](../common/storage-samples-java.md)
|
0 commit comments