如何在 java 中将 UUID 保存为二进制 (16)

How to save a UUID as binary(16) in java

我有一个 table TestTable,其列 ID 为 binary(16),名称为 varchar(50)

我一直在尝试像本文中那样将有序的 UUID 存储为 PK Store UUID in an optimized way

我看到 UUID 在数据库中保存为 HEX (blob)

所以我想从 java 中保存这个 ID,但我收到了这个错误

Data truncation: Data too long for column 'ID' at row 1

我目前正在使用库 sql2o 与 mysql

交互

基本上这是我的代码

String suuid = UUID.randomUUID().toString();
String partial_id = suuid.substring(14,18) + suuid.substring(9, 13) + suuid.substring(0, 8) + suuid.substring(19, 23) + suuid.substring(24)
String final_id = String.format("%040x", new BigInteger(1, partial_id.getBytes()));
con.createQuery("INSERT INTO TestTable(ID, Name) VALUES(:id, :name)")
        .addParameter("id", final_id)
        .addParameter("name", "test1").executeUpdate();

部分id应该是这样的11d8eebc58e0a7d796690800200c9a66

我在 mysql 中试过这个语句没有问题

insert into testtable(id, name) values(UNHEX(CONCAT(SUBSTR(uuid(), 15, 4),SUBSTR(uuid(), 10, 4),SUBSTR(uuid(), 1, 8),SUBSTR(uuid(), 20, 4),SUBSTR(uuid(), 25))), 'Test2');

但是当我删除 unhex 函数时,我得到了同样的错误。那么如何才能将正确的 ID 从 Java 发送到 mysql?

更新

我根据 的回答解决了我的问题。但就我而言,我使用 tomcat 中的 HexUtils 将排序后的 UUID 字符串转换为 bytes[]:

byte[] final_id = HexUtils.fromHexString(partial_id);

尝试将其存储为字节:

UUID uuid = UUID.randomUUID();
byte[] uuidBytes = new byte[16];
ByteBuffer.wrap(uuidBytes)
        .order(ByteOrder.BIG_ENDIAN)
        .putLong(uuid.getMostSignificantBits())
        .putLong(uuid.getLeastSignificantBits());

con.createQuery("INSERT INTO TestTable(ID, Name) VALUES(:id, :name)")
    .addParameter("id", uuidBytes)
    .addParameter("name", "test1").executeUpdate();

一点解释:您的 table 使用 BINARY(16),因此将 UUID 序列化为其原始字节是一种非常简单的方法。 UUID 本质上是具有一些保留位的 128 位整数,因此此代码将其写为大端 128 位整数。 ByteBuffer 只是将两个长整数转换为字节数组的简单方法。

现在在实践中,所有的转换工作和头痛都不值得你每行节省 20 个字节。