This commit is contained in:
地平线
2015-08-31 16:19:02 +08:00
parent 8403be186c
commit 5d26dcc343

View File

@@ -78,7 +78,7 @@ public final class Utility {
public static void println(byte... bytes) {
if (bytes == null) return;
StringBuilder sb = new StringBuilder();
sb.append('[');
sb.append(bytes.length).append(".[");
for (byte b : bytes) {
if (sb.length() > 1) sb.append(',');
int v = b & 0xff;