How do I convert a long to a byte[] and back in Java? I'm trying convert a long to a byte[] so that I will be able to send the byte[] over a tcp connection. On the other side I want to take that byte[] and convert it back into a double. Any tips would be appreciated.
|
Or wrapped in a class to avoid repeatedly creating ByteBuffers:
|
|||||||||||||||||
|
|
Why do you need the byte[]? why not just write it to the socket? I assume you mean long rather than Long, the later needs to allow for null values.
|
|||
|
|
If you are already using an
There are similar methods for |
|||
|
|
|
Just write the long to a DataOutputStream with an underlying ByteArrayOutputStream. From the ByteArrayOutputStream you can get the byte-array via toByteArray():
Works for other primitives accordingly. Hint: For TCP you do not need the byte[] manually. You will use a Socket
instead. |
||||
|
|