CloudBlockBlob.uploadText Method
Definition
Overloads
| uploadText(final String content) |
Uploads a blob from a string using the platform's default encoding. If the blob already exists on the service, it will be overwritten. |
| uploadText(final String content, final String charsetName, final AccessCondition accessCondition, BlobRequestOptions options, OperationContext opContext) |
Uploads a blob from a string using the specified encoding. If the blob already exists on the service, it will be overwritten. |
| uploadText(final String content, final String charsetName, final StandardBlobTier standardBlobTier, final AccessCondition accessCondition, BlobRequestOptions options, OperationContext opContext) |
Uploads a blob from a string using the specified encoding. If the blob already exists on the service, it will be overwritten. |
uploadText(final String content)
Uploads a blob from a string using the platform's default encoding. If the blob already exists on the service, it will be overwritten.
public void uploadText(final String content)
Parameters
- content
- final String
A String which represents the content that will be uploaded to the blob.
Exceptions
If a storage service error occurred.
If a storage service error occurred.
uploadText(final String content, final String charsetName, final AccessCondition accessCondition, BlobRequestOptions options, OperationContext opContext)
Uploads a blob from a string using the specified encoding. If the blob already exists on the service, it will be overwritten.
public void uploadText(final String content, final String charsetName, final AccessCondition accessCondition, BlobRequestOptions options, OperationContext opContext)
Parameters
- content
- final String
A String which represents the content that will be uploaded to the blob.
- charsetName
- final String
A String which represents the name of the charset to use to encode the content. If null, the platform's default encoding is used.
- accessCondition
- final AccessCondition
An AccessCondition object that represents the access conditions for the blob.
- options
- BlobRequestOptions
A BlobRequestOptions object that specifies any additional options for the request. Specifying null will use the default request options from the associated service client ( CloudBlobClient).
- opContext
- OperationContext
An OperationContext object that represents the context for the current operation. This object is used to track requests to the storage service, and to provide additional runtime information about the operation.
Exceptions
If a storage service error occurred.
If a storage service error occurred.
uploadText(final String content, final String charsetName, final StandardBlobTier standardBlobTier, final AccessCondition accessCondition, BlobRequestOptions options, OperationContext opContext)
Uploads a blob from a string using the specified encoding. If the blob already exists on the service, it will be overwritten.
public void uploadText(final String content, final String charsetName, final StandardBlobTier standardBlobTier, final AccessCondition accessCondition, BlobRequestOptions options, OperationContext opContext)
Parameters
- content
- final String
A String which represents the content that will be uploaded to the blob.
- charsetName
- final String
A String which represents the name of the charset to use to encode the content. If null, the platform's default encoding is used.
- standardBlobTier
- final StandardBlobTier
An StandardBlobTier object that represents the tier of the blob.
- accessCondition
- final AccessCondition
An AccessCondition object that represents the access conditions for the blob.
- options
- BlobRequestOptions
A BlobRequestOptions object that specifies any additional options for the request. Specifying null will use the default request options from the associated service client ( CloudBlobClient).
- opContext
- OperationContext
An OperationContext object that represents the context for the current operation. This object is used to track requests to the storage service, and to provide additional runtime information about the operation.
Exceptions
If a storage service error occurred.
If a storage service error occurred.