jiazx0107@163.com
2023-12-14 a69402c8b67d8ce4b698d0c394d15ff43b5d99d0
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;
   }
}