Skip to content

Instantly share code, notes, and snippets.

@valentyn-zaitsev
Created November 25, 2017 08:02
Show Gist options
  • Save valentyn-zaitsev/cdc899066eff9bd02f2563caed659dc2 to your computer and use it in GitHub Desktop.
Save valentyn-zaitsev/cdc899066eff9bd02f2563caed659dc2 to your computer and use it in GitHub Desktop.
Float to Byte array (java)
public static byte[] FloatToByteArray(float value) {
byte[] bytes = new byte[4];
ByteBuffer.wrap(bytes).putFloat(value);
return bytes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment