Skip to content

Instantly share code, notes, and snippets.

@valentyn-zaitsev
Created February 5, 2018 15:21
Show Gist options
  • Save valentyn-zaitsev/0171248573e1a07526d9deaf449bc963 to your computer and use it in GitHub Desktop.
Save valentyn-zaitsev/0171248573e1a07526d9deaf449bc963 to your computer and use it in GitHub Desktop.
public static float bytearray2float(byte[] b) {
ByteBuffer buf = ByteBuffer.wrap(b);
return buf.getFloat();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment