Skip to content

Instantly share code, notes, and snippets.

@omidp
Created December 21, 2022 16:11
Show Gist options
  • Save omidp/82e42f3963b41a3466c6a52cb0f7b19a to your computer and use it in GitHub Desktop.
Save omidp/82e42f3963b41a3466c6a52cb0f7b19a to your computer and use it in GitHub Desktop.
java uuid to db binary 16
public byte[] getByte(UUID uuid) {
ByteBuffer bb = ByteBuffer.wrap(new byte[16]);
bb.putLong(uuid.getMostSignificantBits());
bb.putLong(uuid.getLeastSignificantBits());
return bb.array();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment