Skip to content

Instantly share code, notes, and snippets.

@valentyn-zaitsev
Created November 25, 2017 09:29
Show Gist options
  • Save valentyn-zaitsev/501e877f945585ae8a20262789b3a735 to your computer and use it in GitHub Desktop.
Save valentyn-zaitsev/501e877f945585ae8a20262789b3a735 to your computer and use it in GitHub Desktop.
Double to Byte array
public static byte[] doubleToByteArray(double value) {
byte[] bytes = new byte[8];
ByteBuffer.wrap(bytes).putDouble(value);
return bytes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment