src/main/java/com/fzzy/api/utils/BytesUtil.java
@@ -461,4 +461,12 @@ } return biannary2Decimal(two) + 1; } public static String byteToHex(byte b) { String hex = Integer.toHexString(b & 0xFF); if (hex.length() < 2) { hex = "0" + hex; } return hex; } }