Class BinaryData
- java.lang.Object
-
- com.azure.core.util.BinaryData
-
public final class BinaryData extends Object
BinaryData is a convenient data interchange class for use throughout the Azure SDK for Java. Put simply, BinaryData enables developers to bring data in from external sources, and read it back from Azure services, in formats that appeal to them. This leaves BinaryData, and the Azure SDK for Java, the task of converting this data into appropriate formats to be transferred to and from these external services. This enables developers to focus on their business logic, and enables the Azure SDK for Java to optimize operations for best performance.BinaryData in its simplest form can be thought of as a container for content. Often this content is already in-memory as a String, byte array, or an Object that can be serialized into a String or byte[]. When the BinaryData is about to be sent to an Azure Service, this in-memory content is copied into the network request and sent to the service.
In more performance critical scenarios, where copying data into memory results in increased memory pressure, it is possible to create a BinaryData instance from a stream of data. From this, BinaryData can be connected directly to the outgoing network connection so that the stream is read directly to the network, without needing to first be read into memory on the system. Similarly, it is possible to read a stream of data from a BinaryData returned from an Azure Service without it first being read into memory. In many situations, these streaming operations can drastically reduce the memory pressure in applications, and so it is encouraged that all developers very carefully consider their ability to use the most appropriate API in BinaryData whenever they encounter an client library that makes use of BinaryData.
Refer to the documentation of each method in the BinaryData class to better understand its performance characteristics, and refer to the samples below to understand the common usage scenarios of this class.
BinaryDatacan be created from anInputStream, aFluxofByteBuffer, aString, anObject, afile, or a byte array.A note on data mutability
BinaryDatadoes not copy data on construction. BinaryData keeps a reference to the source content and is accessed when a read request is made. So, any modifications to the underlying source before the content is read can result in undefined behavior.To create an instance of
BinaryData, use the various static factory methods available. They all start with'from'prefix, for examplefromBytes(byte[]).Create an instance from a byte array
final byte[] data = "Some Data".getBytes(StandardCharsets.UTF_8); BinaryData binaryData = BinaryData.fromBytes(data); System.out.println(new String(binaryData.toBytes(), StandardCharsets.UTF_8));
Create an instance from a String
final String data = "Some Data"; // Following will use default character set as StandardCharsets.UTF_8 BinaryData binaryData = BinaryData.fromString(data); System.out.println(binaryData.toString());
Create an instance from an InputStream
final ByteArrayInputStream inputStream = new ByteArrayInputStream("Some Data".getBytes(StandardCharsets.UTF_8)); BinaryData binaryData = BinaryData.fromStream(inputStream); System.out.println(binaryData.toString());Create an instance from an Object
class Person { @JsonProperty private String name; @JsonSetter public Person setName(String name) { this.name = name; return this; } @JsonGetter public String getName() { return name; } } final Person data = new Person().setName("John"); // Provide your custom serializer or use Azure provided serializers. // https://mvnrepository.com/artifact/com.azure/azure-core-serializer-json-jackson or // https://mvnrepository.com/artifact/com.azure/azure-core-serializer-json-gson BinaryData binaryData = BinaryData.fromObject(data); System.out.println(binaryData.toString());Create an instance from
Flux<ByteBuffer>final byte[] data = "Some Data".getBytes(StandardCharsets.UTF_8); final Flux<ByteBuffer> dataFlux = Flux.just(ByteBuffer.wrap(data)); Mono<BinaryData> binaryDataMono = BinaryData.fromFlux(dataFlux); Disposable subscriber = binaryDataMono .map(binaryData -> { System.out.println(binaryData.toString()); return true; }) .subscribe(); // So that your program wait for above subscribe to complete. TimeUnit.SECONDS.sleep(5); subscriber.dispose();Create an instance from a file
BinaryData binaryData = BinaryData.fromFile(new File("path/to/file").toPath()); System.out.println(new String(binaryData.toBytes(), StandardCharsets.UTF_8));- See Also:
ObjectSerializer,JsonSerializer, More about serialization
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static BinaryDatafromBytes(byte[] data)Creates an instance ofBinaryDatafrom the given byte array.static BinaryDatafromFile(Path file)Creates aBinaryDatathat uses the content of the file atPathas its data.static BinaryDatafromFile(Path file, int chunkSize)Creates aBinaryDatathat uses the content of the file atfileas its data.static Mono<BinaryData>fromFlux(Flux<ByteBuffer> data)static Mono<BinaryData>fromFlux(Flux<ByteBuffer> data, Long length)static BinaryDatafromObject(Object data)static BinaryDatafromObject(Object data, ObjectSerializer serializer)static Mono<BinaryData>fromObjectAsync(Object data)static Mono<BinaryData>fromObjectAsync(Object data, ObjectSerializer serializer)static BinaryDatafromStream(InputStream inputStream)Creates an instance ofBinaryDatafrom the givenInputStream.static Mono<BinaryData>fromStreamAsync(InputStream inputStream)Creates an instance ofBinaryDatafrom the givenInputStream.static BinaryDatafromString(String data)Creates an instance ofBinaryDatafrom the givenString.LonggetLength()Returns the length of the content, if it is known.ByteBuffertoByteBuffer()Returns a read-onlyByteBufferrepresentation of thisBinaryData.byte[]toBytes()Returns a byte array representation of thisBinaryData.Flux<ByteBuffer>toFluxByteBuffer()Returns the content of thisBinaryDatainstance as a flux ofByteBuffers.<T> TtoObject(TypeReference<T> typeReference)Returns anObjectrepresentation of thisBinaryDataby deserializing its data using the defaultJsonSerializer.<T> TtoObject(TypeReference<T> typeReference, ObjectSerializer serializer)Returns anObjectrepresentation of thisBinaryDataby deserializing its data using the passedObjectSerializer.<T> TtoObject(Class<T> clazz)Returns anObjectrepresentation of thisBinaryDataby deserializing its data using the defaultJsonSerializer.<T> TtoObject(Class<T> clazz, ObjectSerializer serializer)Returns anObjectrepresentation of thisBinaryDataby deserializing its data using the passedObjectSerializer.<T> Mono<T>toObjectAsync(TypeReference<T> typeReference)Returns anObjectrepresentation of thisBinaryDataby deserializing its data using the defaultJsonSerializer.<T> Mono<T>toObjectAsync(TypeReference<T> typeReference, ObjectSerializer serializer)Returns anObjectrepresentation of thisBinaryDataby deserializing its data using the passedObjectSerializer.<T> Mono<T>toObjectAsync(Class<T> clazz)Returns anObjectrepresentation of thisBinaryDataby deserializing its data using the defaultJsonSerializer.<T> Mono<T>toObjectAsync(Class<T> clazz, ObjectSerializer serializer)Returns anObjectrepresentation of thisBinaryDataby deserializing its data using the passedObjectSerializer.InputStreamtoStream()Returns anInputStreamrepresentation of thisBinaryData.StringtoString()Returns aStringrepresentation of thisBinaryDataby converting its data using the UTF-8 character set.
-
-
-
Method Detail
-
fromStream
public static BinaryData fromStream(InputStream inputStream)
Creates an instance ofBinaryDatafrom the givenInputStream. Depending on the type of inputStream, the BinaryData instance created may or may not allow reading the content more than once. The stream content is not cached if the stream is not read into a format that requires the content to be fully read into memory.NOTE: The
InputStreamis not closed by this function.Create an instance from an InputStream
final ByteArrayInputStream inputStream = new ByteArrayInputStream("Some Data".getBytes(StandardCharsets.UTF_8)); BinaryData binaryData = BinaryData.fromStream(inputStream); System.out.println(binaryData.toString());- Parameters:
inputStream- TheInputStreamthatBinaryDatawill represent.- Returns:
- A
BinaryDatarepresenting theInputStream. - Throws:
UncheckedIOException- If any error happens while reading theInputStream.NullPointerException- IfinputStreamis null.
-
fromStreamAsync
public static Mono<BinaryData> fromStreamAsync(InputStream inputStream)
Creates an instance ofBinaryDatafrom the givenInputStream. NOTE: TheInputStreamis not closed by this function.Create an instance from an InputStream
final ByteArrayInputStream inputStream = new ByteArrayInputStream("Some Data".getBytes(StandardCharsets.UTF_8)); Mono<BinaryData> binaryDataMono = BinaryData.fromStreamAsync(inputStream); Disposable subscriber = binaryDataMono .map(binaryData -> { System.out.println(binaryData.toString()); return true; }) .subscribe(); // So that your program wait for above subscribe to complete. TimeUnit.SECONDS.sleep(5); subscriber.dispose();- Parameters:
inputStream- TheInputStreamthatBinaryDatawill represent.- Returns:
- A
MonoofBinaryDatarepresenting theInputStream. - Throws:
UncheckedIOException- If any error happens while reading theInputStream.NullPointerException- IfinputStreamis null.
-
fromFlux
public static Mono<BinaryData> fromFlux(Flux<ByteBuffer> data)
Creates an instance ofBinaryDatafrom the givenFluxofByteBuffer.Create an instance from a Flux of ByteBuffer
final byte[] data = "Some Data".getBytes(StandardCharsets.UTF_8); final Flux<ByteBuffer> dataFlux = Flux.just(ByteBuffer.wrap(data)); Mono<BinaryData> binaryDataMono = BinaryData.fromFlux(dataFlux); Disposable subscriber = binaryDataMono .map(binaryData -> { System.out.println(binaryData.toString()); return true; }) .subscribe(); // So that your program wait for above subscribe to complete. TimeUnit.SECONDS.sleep(5); subscriber.dispose();- Parameters:
data- TheFluxofByteBufferthatBinaryDatawill represent.- Returns:
- A
MonoofBinaryDatarepresenting theFluxofByteBuffer. - Throws:
NullPointerException- Ifdatais null.
-
fromFlux
public static Mono<BinaryData> fromFlux(Flux<ByteBuffer> data, Long length)
Creates an instance ofBinaryDatafrom the givenFluxofByteBuffer.Create an instance from a Flux of ByteBuffer
final byte[] data = "Some Data".getBytes(StandardCharsets.UTF_8); final Flux<ByteBuffer> dataFlux = Flux.just(ByteBuffer.wrap(data)); Mono<BinaryData> binaryDataMono = BinaryData.fromFlux(dataFlux); Disposable subscriber = binaryDataMono .map(binaryData -> { System.out.println(binaryData.toString()); return true; }) .subscribe(); // So that your program wait for above subscribe to complete. TimeUnit.SECONDS.sleep(5); subscriber.dispose();- Parameters:
data- TheFluxofByteBufferthatBinaryDatawill represent.length- The length ofdatain bytes.- Returns:
- A
MonoofBinaryDatarepresenting theFluxofByteBuffer. - Throws:
IllegalArgumentException- if the length is less than zero.NullPointerException- ifdatais null.
-
fromString
public static BinaryData fromString(String data)
Creates an instance ofBinaryDatafrom the givenString.The
Stringis converted into bytes usingString.getBytes(Charset)passingStandardCharsets.UTF_8.Create an instance from a String
final String data = "Some Data"; // Following will use default character set as StandardCharsets.UTF_8 BinaryData binaryData = BinaryData.fromString(data); System.out.println(binaryData.toString());
- Parameters:
data- TheStringthatBinaryDatawill represent.- Returns:
- A
BinaryDatarepresenting theString. - Throws:
NullPointerException- Ifdatais null.
-
fromBytes
public static BinaryData fromBytes(byte[] data)
Creates an instance ofBinaryDatafrom the given byte array.If the byte array is null or zero length an empty
BinaryDatawill be returned. Note that the input byte array is used as a reference by this instance ofBinaryDataand any changes to the byte array outside of this instance will result in the contents of this BinaryData instance being updated as well. To safely update the byte array without impacting the BinaryData instance, perform an array copy first.Create an instance from a byte array
final byte[] data = "Some Data".getBytes(StandardCharsets.UTF_8); BinaryData binaryData = BinaryData.fromBytes(data); System.out.println(new String(binaryData.toBytes(), StandardCharsets.UTF_8));
- Parameters:
data- The byte array thatBinaryDatawill represent.- Returns:
- A
BinaryDatarepresenting the byte array. - Throws:
NullPointerException- Ifdatais null.
-
fromObject
public static BinaryData fromObject(Object data)
Creates an instance ofBinaryDataby serializing theObjectusing the defaultJsonSerializer.Note: This method first looks for a
JsonSerializerProviderimplementation on the classpath. If no implementation is found, a default Jackson-based implementation will be used to serialize the object.Creating an instance from an Object
class Person { @JsonProperty private String name; @JsonSetter public Person setName(String name) { this.name = name; return this; } @JsonGetter public String getName() { return name; } } final Person data = new Person().setName("John"); // Provide your custom serializer or use Azure provided serializers. // https://mvnrepository.com/artifact/com.azure/azure-core-serializer-json-jackson or // https://mvnrepository.com/artifact/com.azure/azure-core-serializer-json-gson BinaryData binaryData = BinaryData.fromObject(data); System.out.println(binaryData.toString());- Parameters:
data- The object that will be JSON serialized thatBinaryDatawill represent.- Returns:
- A
BinaryDatarepresenting the JSON serialized object. - Throws:
NullPointerException- Ifdatais null.- See Also:
JsonSerializer
-
fromObjectAsync
public static Mono<BinaryData> fromObjectAsync(Object data)
Creates an instance ofBinaryDataby serializing theObjectusing the defaultJsonSerializer.Note: This method first looks for a
JsonSerializerProviderimplementation on the classpath. If no implementation is found, a default Jackson-based implementation will be used to serialize the object.Creating an instance from an Object
class Person { @JsonProperty private String name; @JsonSetter public Person setName(String name) { this.name = name; return this; } @JsonGetter public String getName() { return name; } } final Person data = new Person().setName("John"); // Provide your custom serializer or use Azure provided serializers. // https://mvnrepository.com/artifact/com.azure/azure-core-serializer-json-jackson or // https://mvnrepository.com/artifact/com.azure/azure-core-serializer-json-gson Disposable subscriber = BinaryData.fromObjectAsync(data) .subscribe(binaryData -> System.out.println(binaryData.toString())); // So that your program wait for above subscribe to complete. TimeUnit.SECONDS.sleep(5); subscriber.dispose();- Parameters:
data- The object that will be JSON serialized thatBinaryDatawill represent.- Returns:
- A
MonoofBinaryDatarepresenting the JSON serialized object. - See Also:
JsonSerializer
-
fromObject
public static BinaryData fromObject(Object data, ObjectSerializer serializer)
Creates an instance ofBinaryDataby serializing theObjectusing the passedObjectSerializer.The passed
ObjectSerializercan either be one of the implementations offered by the Azure SDKs or your own implementation.Azure SDK implementations
Create an instance from an Object
class Person { @JsonProperty private String name; @JsonSetter public Person setName(String name) { this.name = name; return this; } @JsonGetter public String getName() { return name; } } final Person data = new Person().setName("John"); // Provide your custom serializer or use Azure provided serializers. // https://mvnrepository.com/artifact/com.azure/azure-core-serializer-json-jackson or // https://mvnrepository.com/artifact/com.azure/azure-core-serializer-json-gson final ObjectSerializer serializer = new MyJsonSerializer(); // Replace this with your Serializer BinaryData binaryData = BinaryData.fromObject(data, serializer); System.out.println(binaryData.toString());- Parameters:
data- The object that will be serialized thatBinaryDatawill represent. Theserializerdetermines hownulldata is serialized.serializer- TheObjectSerializerused to serialize object.- Returns:
- A
BinaryDatarepresenting the serialized object. - Throws:
NullPointerException- Ifserializeris null.- See Also:
ObjectSerializer,JsonSerializer, More about serialization
-
fromObjectAsync
public static Mono<BinaryData> fromObjectAsync(Object data, ObjectSerializer serializer)
Creates an instance ofBinaryDataby serializing theObjectusing the passedObjectSerializer.The passed
ObjectSerializercan either be one of the implementations offered by the Azure SDKs or your own implementation.Azure SDK implementations
Create an instance from an Object
class Person { @JsonProperty private String name; @JsonSetter public Person setName(String name) { this.name = name; return this; } @JsonGetter public String getName() { return name; } } final Person data = new Person().setName("John"); // Provide your custom serializer or use Azure provided serializers. // https://mvnrepository.com/artifact/com.azure/azure-core-serializer-json-jackson or // https://mvnrepository.com/artifact/com.azure/azure-core-serializer-json-gson final ObjectSerializer serializer = new MyJsonSerializer(); // Replace this with your Serializer Disposable subscriber = BinaryData.fromObjectAsync(data, serializer) .subscribe(binaryData -> System.out.println(binaryData.toString())); // So that your program wait for above subscribe to complete. TimeUnit.SECONDS.sleep(5); subscriber.dispose();- Parameters:
data- The object that will be serialized thatBinaryDatawill represent. Theserializerdetermines hownulldata is serialized.serializer- TheObjectSerializerused to serialize object.- Returns:
- A
MonoofBinaryDatarepresenting the serialized object. - Throws:
NullPointerException- Ifserializeris null.- See Also:
ObjectSerializer,JsonSerializer, More about serialization
-
fromFile
public static BinaryData fromFile(Path file)
Creates aBinaryDatathat uses the content of the file atPathas its data. This method checks for the existence of the file at the time of creating an instance ofBinaryData. The file, however, is not read until there is an attempt to read the contents of the returned BinaryData instance.Create an instance from a file
BinaryData binaryData = BinaryData.fromFile(new File("path/to/file").toPath()); System.out.println(new String(binaryData.toBytes(), StandardCharsets.UTF_8));- Parameters:
file- ThePaththat will be theBinaryDatadata.- Returns:
- A new
BinaryData. - Throws:
NullPointerException- Iffileis null.
-
fromFile
public static BinaryData fromFile(Path file, int chunkSize)
Creates aBinaryDatathat uses the content of the file atfileas its data. This method checks for the existence of the file at the time of creating an instance ofBinaryData. The file, however, is not read until there is an attempt to read the contents of the returned BinaryData instance.Create an instance from a file
BinaryData binaryData = BinaryData.fromFile(new File("path/to/file").toPath(), 8092); System.out.println(new String(binaryData.toBytes(), StandardCharsets.UTF_8));- Parameters:
file- ThePaththat will be theBinaryDatadata.chunkSize- The requested size for each read of the path.- Returns:
- A new
BinaryData. - Throws:
NullPointerException- Iffileis null.IllegalArgumentException- Ifoffsetorlengthare negative oroffsetpluslengthis greater than the file size orchunkSizeis less than or equal to 0.UncheckedIOException- if the file does not exist.
-
toBytes
public byte[] toBytes()
Returns a byte array representation of thisBinaryData. This method returns a reference to the underlying byte array. Modifying the contents of the returned byte array will also change the content of this BinaryData instance. If the content source of this BinaryData instance is a file, an Inputstream or aFlux<ByteBuffer>the source is not modified. To safely update the byte array, it is recommended to make a copy of the contents first.- Returns:
- A byte array representing this
BinaryData.
-
toString
public String toString()
Returns aStringrepresentation of thisBinaryDataby converting its data using the UTF-8 character set. A new instance of String is created each time this method is called.- Overrides:
toStringin classObject- Returns:
- A
Stringrepresenting thisBinaryData.
-
toObject
public <T> T toObject(Class<T> clazz)
Returns anObjectrepresentation of thisBinaryDataby deserializing its data using the defaultJsonSerializer. Each time this method is called, the content is deserialized and a new instance of typeTis returned. So, calling this method repeatedly to convert the underlying data source into the same type is not recommended.The type, represented by
Class, should be a non-generic class, for generic classes usetoObject(TypeReference).Note: This method first looks for a
JsonSerializerProviderimplementation on the classpath. If no implementation is found, a default Jackson-based implementation will be used to deserialize the object.Get a non-generic Object from the BinaryData
class Person { @JsonProperty private String name; @JsonSetter public Person setName(String name) { this.name = name; return this; } @JsonGetter public String getName() { return name; } } final Person data = new Person().setName("John"); // Ensure your classpath have the Serializer to serialize the object which implement implement // com.azure.core.util.serializer.JsonSerializer interface. // Or use Azure provided libraries for this. // https://mvnrepository.com/artifact/com.azure/azure-core-serializer-json-jackson or // https://mvnrepository.com/artifact/com.azure/azure-core-serializer-json-gson BinaryData binaryData = BinaryData.fromObject(data); Person person = binaryData.toObject(Person.class); System.out.println(person.getName());- Type Parameters:
T- Type of the deserialized Object.- Parameters:
clazz- TheClassrepresenting the Object's type.- Returns:
- An
Objectrepresenting the JSON deserializedBinaryData. - Throws:
NullPointerException- Ifclazzis null.- See Also:
JsonSerializer
-
toObject
public <T> T toObject(TypeReference<T> typeReference)
Returns anObjectrepresentation of thisBinaryDataby deserializing its data using the defaultJsonSerializer. Each time this method is called, the content is deserialized and a new instance of typeTis returned. So, calling this method repeatedly to convert the underlying data source into the same type is not recommended.The type, represented by
TypeReference, can either be a generic or non-generic type. If the type is generic create a sub-type ofTypeReference, if the type is non-generic useTypeReference.createInstance(Class).Note: This method first looks for a
JsonSerializerProviderimplementation on the classpath. If no implementation is found, a default Jackson-based implementation will be used to deserialize the object.Get a non-generic Object from the BinaryData
class Person { @JsonProperty private String name; @JsonSetter public Person setName(String name) { this.name = name; return this; } @JsonGetter public String getName() { return name; } } final Person data = new Person().setName("John"); // Ensure your classpath have the Serializer to serialize the object which implement implement // com.azure.core.util.serializer.JsonSerializer interface. // Or use Azure provided libraries for this. // https://mvnrepository.com/artifact/com.azure/azure-core-serializer-json-jackson or // https://mvnrepository.com/artifact/com.azure/azure-core-serializer-json-gson BinaryData binaryData = BinaryData.fromObject(data); Person person = binaryData.toObject(TypeReference.createInstance(Person.class)); System.out.println(person.getName());Get a generic Object from the BinaryData
final Person person1 = new Person().setName("John"); final Person person2 = new Person().setName("Jack"); List<Person> personList = new ArrayList<>(); personList.add(person1); personList.add(person2); // Ensure your classpath have the Serializer to serialize the object which implement implement // com.azure.core.util.serializer.JsonSerializer interface. // Or use Azure provided libraries for this. // https://mvnrepository.com/artifact/com.azure/azure-core-serializer-json-jackson or // https://mvnrepository.com/artifact/com.azure/azure-core-serializer-json-gson BinaryData binaryData = BinaryData.fromObject(personList); List<Person> persons = binaryData.toObject(new TypeReference<List<Person>>() { }); persons.forEach(person -> System.out.println(person.getName()));- Type Parameters:
T- Type of the deserialized Object.- Parameters:
typeReference- TheTypeReferencerepresenting the Object's type.- Returns:
- An
Objectrepresenting the JSON deserializedBinaryData. - Throws:
NullPointerException- IftypeReferenceis null.- See Also:
JsonSerializer
-
toObject
public <T> T toObject(Class<T> clazz, ObjectSerializer serializer)
Returns anObjectrepresentation of thisBinaryDataby deserializing its data using the passedObjectSerializer. Each time this method is called, the content is deserialized and a new instance of typeTis returned. So, calling this method repeatedly to convert the underlying data source into the same type is not recommended.The type, represented by
Class, should be a non-generic class, for generic classes usetoObject(TypeReference, ObjectSerializer).The passed
ObjectSerializercan either be one of the implementations offered by the Azure SDKs or your own implementation.Azure SDK implementations
Get a non-generic Object from the BinaryData
class Person { @JsonProperty private String name; @JsonSetter public Person setName(String name) { this.name = name; return this; } @JsonGetter public String getName() { return name; } } final Person data = new Person().setName("John"); // Provide your custom serializer or use Azure provided serializers. // https://mvnrepository.com/artifact/com.azure/azure-core-serializer-json-jackson or // https://mvnrepository.com/artifact/com.azure/azure-core-serializer-json-gson final ObjectSerializer serializer = new MyJsonSerializer(); // Replace this with your Serializer BinaryData binaryData = BinaryData.fromObject(data, serializer); Person person = binaryData.toObject(Person.class, serializer); System.out.println("Name : " + person.getName());- Type Parameters:
T- Type of the deserialized Object.- Parameters:
clazz- TheClassrepresenting the Object's type.serializer- TheObjectSerializerused to deserialize object.- Returns:
- An
Objectrepresenting the deserializedBinaryData. - Throws:
NullPointerException- Ifclazzorserializeris null.- See Also:
ObjectSerializer,JsonSerializer, More about serialization
-
toObject
public <T> T toObject(TypeReference<T> typeReference, ObjectSerializer serializer)
Returns anObjectrepresentation of thisBinaryDataby deserializing its data using the passedObjectSerializer. Each time this method is called, the content is deserialized and a new instance of typeTis returned. So, calling this method repeatedly to convert the underlying data source into the same type is not recommended.The type, represented by
TypeReference, can either be a generic or non-generic type. If the type is generic create a sub-type ofTypeReference, if the type is non-generic useTypeReference.createInstance(Class).The passed
ObjectSerializercan either be one of the implementations offered by the Azure SDKs or your own implementation.Azure SDK implementations
Get a non-generic Object from the BinaryData
class Person { @JsonProperty private String name; @JsonSetter public Person setName(String name) { this.name = name; return this; } @JsonGetter public String getName() { return name; } } final Person data = new Person().setName("John"); // Provide your custom serializer or use Azure provided serializers. // https://mvnrepository.com/artifact/com.azure/azure-core-serializer-json-jackson or // https://mvnrepository.com/artifact/com.azure/azure-core-serializer-json-gson final ObjectSerializer serializer = new MyJsonSerializer(); // Replace this with your Serializer BinaryData binaryData = BinaryData.fromObject(data, serializer); Person person = binaryData.toObject(TypeReference.createInstance(Person.class), serializer); System.out.println("Name : " + person.getName());Get a generic Object from the BinaryData
final Person person1 = new Person().setName("John"); final Person person2 = new Person().setName("Jack"); List<Person> personList = new ArrayList<>(); personList.add(person1); personList.add(person2); final ObjectSerializer serializer = new MyJsonSerializer(); // Replace this with your Serializer BinaryData binaryData = BinaryData.fromObject(personList, serializer); // Retains the type of the list when deserializing List<Person> persons = binaryData.toObject(new TypeReference<List<Person>>() { }, serializer); persons.forEach(person -> System.out.println("Name : " + person.getName()));- Type Parameters:
T- Type of the deserialized Object.- Parameters:
typeReference- TheTypeReferencerepresenting the Object's type.serializer- TheObjectSerializerused to deserialize object.- Returns:
- An
Objectrepresenting the deserializedBinaryData. - Throws:
NullPointerException- IftypeReferenceorserializeris null.- See Also:
ObjectSerializer,JsonSerializer, More about serialization
-
toObjectAsync
public <T> Mono<T> toObjectAsync(Class<T> clazz)
Returns anObjectrepresentation of thisBinaryDataby deserializing its data using the defaultJsonSerializer. Each time this method is called, the content is deserialized and a new instance of typeTis returned. So, calling this method repeatedly to convert the underlying data source into the same type is not recommended.The type, represented by
Class, should be a non-generic class, for generic classes usetoObject(TypeReference).Note: This method first looks for a
JsonSerializerProviderimplementation on the classpath. If no implementation is found, a default Jackson-based implementation will be used to deserialize the object.Get a non-generic Object from the BinaryData
class Person { @JsonProperty private String name; @JsonSetter public Person setName(String name) { this.name = name; return this; } @JsonGetter public String getName() { return name; } } final Person data = new Person().setName("John"); // Ensure your classpath have the Serializer to serialize the object which implement implement // com.azure.core.util.serializer.JsonSerializer interface. // Or use Azure provided libraries for this. // https://mvnrepository.com/artifact/com.azure/azure-core-serializer-json-jackson or // https://mvnrepository.com/artifact/com.azure/azure-core-serializer-json-gson BinaryData binaryData = BinaryData.fromObject(data); Disposable subscriber = binaryData.toObjectAsync(Person.class) .subscribe(person -> System.out.println(person.getName())); // So that your program wait for above subscribe to complete. TimeUnit.SECONDS.sleep(5); subscriber.dispose();- Type Parameters:
T- Type of the deserialized Object.- Parameters:
clazz- TheClassrepresenting the Object's type.- Returns:
- A
MonoofObjectrepresenting the JSON deserializedBinaryData. - Throws:
NullPointerException- Ifclazzis null.- See Also:
JsonSerializer
-
toObjectAsync
public <T> Mono<T> toObjectAsync(TypeReference<T> typeReference)
Returns anObjectrepresentation of thisBinaryDataby deserializing its data using the defaultJsonSerializer. Each time this method is called, the content is deserialized and a new instance of typeTis returned. So, calling this method repeatedly to convert the underlying data source into the same type is not recommended.The type, represented by
TypeReference, can either be a generic or non-generic type. If the type is generic create a sub-type ofTypeReference, if the type is non-generic useTypeReference.createInstance(Class).Note: This method first looks for a
JsonSerializerProviderimplementation on the classpath. If no implementation is found, a default Jackson-based implementation will be used to deserialize the object.Get a non-generic Object from the BinaryData
class Person { @JsonProperty private String name; @JsonSetter public Person setName(String name) { this.name = name; return this; } @JsonGetter public String getName() { return name; } } final Person data = new Person().setName("John"); // Ensure your classpath have the Serializer to serialize the object which implement implement // com.azure.core.util.serializer.JsonSerializer interface. // Or use Azure provided libraries for this. // https://mvnrepository.com/artifact/com.azure/azure-core-serializer-json-jackson or // https://mvnrepository.com/artifact/com.azure/azure-core-serializer-json-gson BinaryData binaryData = BinaryData.fromObject(data); Disposable subscriber = binaryData.toObjectAsync(TypeReference.createInstance(Person.class)) .subscribe(person -> System.out.println(person.getName())); // So that your program wait for above subscribe to complete. TimeUnit.SECONDS.sleep(5); subscriber.dispose();Get a generic Object from the BinaryData
final Person person1 = new Person().setName("John"); final Person person2 = new Person().setName("Jack"); List<Person> personList = new ArrayList<>(); personList.add(person1); personList.add(person2); BinaryData binaryData = BinaryData.fromObject(personList); Disposable subscriber = binaryData.toObjectAsync(new TypeReference<List<Person>>() { }) .subscribe(persons -> persons.forEach(person -> System.out.println(person.getName()))); // So that your program wait for above subscribe to complete. TimeUnit.SECONDS.sleep(5); subscriber.dispose();- Type Parameters:
T- Type of the deserialized Object.- Parameters:
typeReference- TheTypeReferencerepresenting the Object's type.- Returns:
- A
MonoofObjectrepresenting the JSON deserializedBinaryData. - Throws:
NullPointerException- IftypeReferenceis null.- See Also:
JsonSerializer
-
toObjectAsync
public <T> Mono<T> toObjectAsync(Class<T> clazz, ObjectSerializer serializer)
Returns anObjectrepresentation of thisBinaryDataby deserializing its data using the passedObjectSerializer. Each time this method is called, the content is deserialized and a new instance of typeTis returned. So, calling this method repeatedly to convert the underlying data source into the same type is not recommended.The type, represented by
Class, should be a non-generic class, for generic classes usetoObject(TypeReference, ObjectSerializer).The passed
ObjectSerializercan either be one of the implementations offered by the Azure SDKs or your own implementation.Azure SDK implementations
Get a non-generic Object from the BinaryData
class Person { @JsonProperty private String name; @JsonSetter public Person setName(String name) { this.name = name; return this; } @JsonGetter public String getName() { return name; } } final Person data = new Person().setName("John"); // Provide your custom serializer or use Azure provided serializers. // https://mvnrepository.com/artifact/com.azure/azure-core-serializer-json-jackson or // https://mvnrepository.com/artifact/com.azure/azure-core-serializer-json-gson final ObjectSerializer serializer = new MyJsonSerializer(); // Replace this with your Serializer BinaryData binaryData = BinaryData.fromObject(data, serializer); Disposable subscriber = binaryData.toObjectAsync(Person.class, serializer) .subscribe(person -> System.out.println(person.getName())); // So that your program wait for above subscribe to complete. TimeUnit.SECONDS.sleep(5); subscriber.dispose();- Type Parameters:
T- Type of the deserialized Object.- Parameters:
clazz- TheClassrepresenting the Object's type.serializer- TheObjectSerializerused to deserialize object.- Returns:
- A
MonoofObjectrepresenting the deserializedBinaryData. - Throws:
NullPointerException- Ifclazzorserializeris null.- See Also:
ObjectSerializer,JsonSerializer, More about serialization
-
toObjectAsync
public <T> Mono<T> toObjectAsync(TypeReference<T> typeReference, ObjectSerializer serializer)
Returns anObjectrepresentation of thisBinaryDataby deserializing its data using the passedObjectSerializer. Each time this method is called, the content is deserialized and a new instance of typeTis returned. So, calling this method repeatedly to convert the underlying data source into the same type is not recommended.The type, represented by
TypeReference, can either be a generic or non-generic type. If the type is generic create a sub-type ofTypeReference, if the type is non-generic useTypeReference.createInstance(Class).The passed
ObjectSerializercan either be one of the implementations offered by the Azure SDKs or your own implementation.Azure SDK implementations
Get a non-generic Object from the BinaryData
class Person { @JsonProperty private String name; @JsonSetter public Person setName(String name) { this.name = name; return this; } @JsonGetter public String getName() { return name; } } final Person data = new Person().setName("John"); // Provide your custom serializer or use Azure provided serializers. // https://mvnrepository.com/artifact/com.azure/azure-core-serializer-json-jackson or // https://mvnrepository.com/artifact/com.azure/azure-core-serializer-json-gson final ObjectSerializer serializer = new MyJsonSerializer(); // Replace this with your Serializer BinaryData binaryData = BinaryData.fromObject(data, serializer); Disposable subscriber = binaryData .toObjectAsync(TypeReference.createInstance(Person.class), serializer) .subscribe(person -> System.out.println(person.getName())); // So that your program wait for above subscribe to complete. TimeUnit.SECONDS.sleep(5); subscriber.dispose();Get a generic Object from the BinaryData
final Person person1 = new Person().setName("John"); final Person person2 = new Person().setName("Jack"); List<Person> personList = new ArrayList<>(); personList.add(person1); personList.add(person2); final ObjectSerializer serializer = new MyJsonSerializer(); // Replace this with your Serializer BinaryData binaryData = BinaryData.fromObject(personList, serializer); Disposable subscriber = binaryData .toObjectAsync(new TypeReference<List<Person>>() { }, serializer) // retains the generic type information .subscribe(persons -> persons.forEach(person -> System.out.println(person.getName()))); // So that your program wait for above subscribe to complete. TimeUnit.SECONDS.sleep(5); subscriber.dispose();- Type Parameters:
T- Type of the deserialized Object.- Parameters:
typeReference- TheTypeReferencerepresenting the Object's type.serializer- TheObjectSerializerused to deserialize object.- Returns:
- A
MonoofObjectrepresenting the deserializedBinaryData. - Throws:
NullPointerException- IftypeReferenceorserializeris null.- See Also:
ObjectSerializer,JsonSerializer, More about serialization
-
toStream
public InputStream toStream()
Returns anInputStreamrepresentation of thisBinaryData.Get an InputStream from the BinaryData
final byte[] data = "Some Data".getBytes(StandardCharsets.UTF_8); BinaryData binaryData = BinaryData.fromStream(new ByteArrayInputStream(data)); final byte[] bytes = new byte[data.length]; binaryData.toStream().read(bytes, 0, data.length); System.out.println(new String(bytes));
- Returns:
- An
InputStreamrepresenting theBinaryData.
-
toByteBuffer
public ByteBuffer toByteBuffer()
Returns a read-onlyByteBufferrepresentation of thisBinaryData.Attempting to mutate the returned
ByteBufferwill throw aReadOnlyBufferException.Get a read-only ByteBuffer from the BinaryData
final byte[] data = "Some Data".getBytes(StandardCharsets.UTF_8); BinaryData binaryData = BinaryData.fromBytes(data); final byte[] bytes = new byte[data.length]; binaryData.toByteBuffer().get(bytes, 0, data.length); System.out.println(new String(bytes));
- Returns:
- A read-only
ByteBufferrepresenting theBinaryData.
-
toFluxByteBuffer
public Flux<ByteBuffer> toFluxByteBuffer()
Returns the content of thisBinaryDatainstance as a flux ofByteBuffers. The content is not read from the underlying data source until theFluxis subscribed to.- Returns:
- the content of this
BinaryDatainstance as a flux ofByteBuffers.
-
getLength
public Long getLength()
Returns the length of the content, if it is known. The length can benullif the source did not specify the length or the length cannot be determined without reading the whole content.- Returns:
- the length of the content, if it is known.
-
-