Skip to content
Advertisement

How to display hashed MD5 value as text displayed in H2?

The H2 HASH function returns bytes, and SELECT HASH('MD5', 'test') AS new_id FROM my_table; displays a text value: 098f6bcd4621d373cade4e832627b4f6 enter image description here

How to retrieve that same text value in Java? Using ResultSet.getBytes("new_id") gives the object’s address, something like [B@48f278eb. Feeding that through new String(ResultSet.getBytes("new_id"), StandardCharsets.UTF_8) gives gobbledygook: �Oh�؆nr�Mz��.

Advertisement

Answer

The reason you see [B@48f278eb is because the resulting MD5 hash is in bytes in a non-string format.

Here is a complete example of generating the MD5 hash and converting the resulting bytes to a string by using a StringBuilder and formatting it String.format("%02x", b):

JavaScript

And the output is as expected:

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement