I have an object of type X which I want to convert into byte array before sending it to store in S3. Can anybody tell me how to do this? I appreciate your help.
|
|
What you want to do is called "serialization". There are several ways of doing it, but if you don't need anything fancy I think using the standard Java object serialization would do just fine. Perhaps you could use something like this?
There are several improvements to this that can be done. Not in the least the fact that you can only read/write one object per byte array, which might or might not be what you want. Note that "Only objects that support the Since you might run into it, the continuous allocation and resizing of the For serialization of objects that do not implement the This site has a list and performance comparison of some serialization frameworks. Looking at the APIs it seems Kryo might fit what you need. |
|||||
|
|
As i've mentioned in other, similar questions, you may want to consider compressing the data as the default java serialization is a bit verbose. you do this by putting a GZIPInput/OutputStream between the Object streams and the Byte streams. |
|||
|
|
|
Yeah. Just use binary serialization. You have to have each object use Your other option, if you want to avoid implementing the Serializable interface, is to use reflection and read and write data to/from a buffer using a process like this. |
|||||||||
|