mirror of
https://github.com/LamGC/ScalaBot.git
synced 2025-04-29 14:17:30 +00:00
17 lines
348 B
Java
17 lines
348 B
Java
package net.lamgc.scalabot.util;
|
|
|
|
final class ByteUtils {
|
|
|
|
private ByteUtils() {
|
|
}
|
|
|
|
public static String bytesToHexString(byte[] bytes) {
|
|
StringBuilder builder = new StringBuilder();
|
|
for (byte aByte : bytes) {
|
|
builder.append(Integer.toHexString(aByte));
|
|
}
|
|
return builder.toString();
|
|
}
|
|
|
|
}
|