Skip to content

Commit bf32cb6

Browse files
authored
Merge pull request #90588 from mhopkins-msft/quickstart-java-v8
Quickstart java v8
2 parents 32e26c2 + 988558c commit bf32cb6

File tree

2 files changed

+25
-22
lines changed

2 files changed

+25
-22
lines changed

articles/storage/blobs/TOC.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@
2727
items:
2828
- name: .NET
2929
href: storage-quickstart-blobs-dotnet.md
30-
- name: Node.js
31-
href: storage-quickstart-blobs-nodejs-v10.md
30+
- name: Java
31+
href: storage-quickstart-blobs-java.md
3232
- name: Python
3333
href: storage-quickstart-blobs-python.md
34-
- name: JS/HTML using v10 SDK
34+
- name: Javascript (Node.js)
35+
href: storage-quickstart-blobs-nodejs-v10.md
36+
- name: Javascript (browser)
3537
href: storage-quickstart-blobs-javascript-client-libraries-v10.md
36-
- name: JS/HTML using v2 SDK
37-
href: storage-quickstart-blobs-javascript-client-libraries.md
3838
- name: Go
3939
href: storage-quickstart-blobs-go.md
4040
- name: PHP
@@ -410,12 +410,12 @@
410410
href: /java/azure/spring-framework/configure-spring-boot-starter-java-app-with-azure-storage
411411
- name: Xamarin
412412
href: storage-xamarin-blob-storage.md
413-
- name: Legacy SDKs
413+
- name: Prior SDK versions
414414
items:
415-
- name: Java (Storage SDK V7)
416-
href: storage-quickstart-blobs-java.md
417-
- name: Node.js (Storage SDK v2)
415+
- name: Javascript (Node.js) (Storage SDK v2)
418416
href: storage-quickstart-blobs-nodejs.md
417+
- name: Javascript (browser) (Storage SDK v2)
418+
href: storage-quickstart-blobs-javascript-client-libraries.md
419419
- name: Manage blobs
420420
items:
421421
- name: Azure CLI

articles/storage/blobs/storage-quickstart-blobs-java.md

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,33 @@
11
---
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.
44
author: mhopkins-msft
55

66
ms.author: mhopkins
7-
ms.date: 02/04/2019
7+
ms.date: 10/05/2019
88
ms.service: storage
99
ms.subservice: blobs
1010
ms.topic: conceptual
1111
---
1212

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
1414

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.
1616

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:
2018

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
2225

23-
Make sure you have the following prerequisites:
24-
25-
* Install an IDE that has Maven integration.
26+
## Prerequisites
2627

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.
2731
* Alternatively, install and configure Maven to work from the command line.
2832

2933
This guide uses [Eclipse](https://www.eclipse.org/downloads/) with the "Eclipse IDE for Java Developers" configuration.
@@ -201,6 +205,5 @@ sourceFile.deleteOnExit();
201205
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.
202206

203207
> [!div class="nextstepaction"]
204-
> [Microsoft Azure Storage SDK v10 for Java](https://github.com/azure/azure-storage-java)
205208
> [Java API Reference](https://docs.microsoft.com/java/azure/)
206209
> [Code Samples for Java](../common/storage-samples-java.md)

0 commit comments

Comments
 (0)