You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 19, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+13-13Lines changed: 13 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,10 @@
1
-
#Microsoft Azure Storage SDK for Java
1
+
#Microsoft Azure Storage SDK for Java
2
2
3
3
This project provides a client library in Java that makes it easy to consume Microsoft Azure Storage services. For documentation please see the Microsoft Azure [Java Developer Center](http://azure.microsoft.com/en-us/develop/java/) and the [JavaDocs](http://azure.github.io/azure-storage-java/).
4
4
5
5
> If you are looking for the Azure Storage Android SDK, please visit [https://github.com/Azure/azure-storage-android](https://github.com/Azure/azure-storage-android).
6
6
7
-
#Features
7
+
#Features
8
8
* Blob
9
9
* Create/Read/Update/Delete containers
10
10
* Create/Read/Update/Delete blobs
@@ -19,10 +19,10 @@ This project provides a client library in Java that makes it easy to consume Mic
19
19
* Batch operations
20
20
* Advanced Table Operations
21
21
22
-
#Getting Started
22
+
#Getting Started
23
23
24
-
##Download
25
-
###Option 1: Via Maven
24
+
##Download
25
+
###Option 1: Via Maven
26
26
27
27
To get the binaries of this library as distributed by Microsoft, ready for use within your project, you can use Maven.
28
28
@@ -34,19 +34,19 @@ To get the binaries of this library as distributed by Microsoft, ready for use w
34
34
</dependency>
35
35
```
36
36
37
-
###Option 2: Source Via Git
37
+
###Option 2: Source Via Git
38
38
39
39
To get the source code of the SDK via git just type:
To download a copy of the source code, click "Download ZIP" on the right side of the page or click [here](https://github.com/Azure/azure-storage-java/archive/master.zip). Unzip and navigate to the microsoft-azure-storage folder.
48
48
49
-
##Minimum Requirements
49
+
##Minimum Requirements
50
50
51
51
* Java 1.6+
52
52
*[Jackson-Core](https://github.com/FasterXML/jackson-core) is used for JSON parsing.
@@ -58,13 +58,13 @@ The two dependencies, [Jackson-Core](https://github.com/FasterXML/jackson-core)
58
58
59
59
SLF4J is only needed if you enable logging through the OperationContext class. If you plan to use logging, please also download an [SLF4J binding](http://repo2.maven.org/maven2/org/slf4j/) which will link the SLF4J API with the logging implementation of your choice. Simple is a good default. See the [SLF4J user manual](http://www.slf4j.org/manual.html) for more information.
60
60
61
-
##Usage
61
+
##Usage
62
62
63
63
To use this SDK to call Microsoft Azure storage services, you need to first [create an account](https://account.windowsazure.com/signup).
64
64
65
65
Samples are provided in the microsoft-azure-storage-samples folder. The unit tests in microsoft-azure-storage-test can also be helpful.
66
66
67
-
##Code Sample
67
+
##Code Sample
68
68
69
69
The following is a quick example on how to upload a file to azure blob and download it back. You may also download and view the samples in the microsoft-azure-storage-samples folder. For additional information on using the client libraries to access Azure services see the How To guides for [blobs](http://azure.microsoft.com/en-us/documentation/articles/storage-java-how-to-use-blob-storage/), [queues](http://azure.microsoft.com/en-us/documentation/articles/storage-java-how-to-use-queue-storage/), [tables](http://azure.microsoft.com/en-us/documentation/articles/storage-java-how-to-use-table-storage/) and the [general documentation](http://azure.microsoft.com/en-us/develop/java/).
70
70
@@ -117,17 +117,17 @@ public class BlobSample {
117
117
}
118
118
```
119
119
120
-
#Need Help?
120
+
#Need Help?
121
121
122
122
Be sure to check out the Microsoft Azure [Developer Forums on MSDN](http://social.msdn.microsoft.com/Forums/windowsazure/en-US/home?forum=windowsazuredata) or the [Developer Forums on Stack Overflow](http://stackoverflow.com/questions/tagged/azure+windows-azure-storage) if you have trouble with the provided code.
123
123
124
-
#Contribute Code or Provide Feedback
124
+
#Contribute Code or Provide Feedback
125
125
126
126
If you would like to become an active contributor to this project please follow the instructions provided in [Azure Projects Contribution Guidelines](http://azure.github.io/guidelines/).
127
127
128
128
If you encounter any bugs with the library please file an issue in the [Issues](https://github.com/Azure/azure-storage-java/issues) section of the project.
0 commit comments