From 65efc3372e0856f749888535db323888c298f6fe Mon Sep 17 00:00:00 2001 From: Redkale <22250530@qq.com> Date: Tue, 7 Mar 2017 17:44:50 +0800 Subject: [PATCH] --- src/org/redkale/util/Utility.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/org/redkale/util/Utility.java b/src/org/redkale/util/Utility.java index 421e2f642..305439c06 100644 --- a/src/org/redkale/util/Utility.java +++ b/src/org/redkale/util/Utility.java @@ -287,6 +287,7 @@ public final class Utility { for (byte b : bytes) { if (last) sb.append(','); int v = b & 0xff; + sb.append("0x"); if (v < 16) sb.append('0'); sb.append(Integer.toHexString(v)); last = true;