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