This commit is contained in:
地平线
2015-07-02 11:55:35 +08:00
parent e43a653be8
commit 15d9890f86

View File

@@ -81,7 +81,9 @@ public final class Utility {
sb.append('['); sb.append('[');
for (byte b : bytes) { for (byte b : bytes) {
if (sb.length() > 1) sb.append(','); if (sb.length() > 1) sb.append(',');
sb.append(Integer.toHexString(b & 0xff)); int v = b & 0xff;
if (v < 10) sb.append('0');
sb.append(Integer.toHexString(v));
} }
sb.append(']'); sb.append(']');
(System.out).println(sb); (System.out).println(sb);