Class HexUtils

java.lang.Object
org.apache.tomcat.util.buf.HexUtils

public final class HexUtils extends Object
Tables useful when converting byte arrays to and from strings of hexadecimal digits. Code from Ajp11, from Apache's JServ.
Author:
Craig R. McClanahan
  • Constructor Details

    • HexUtils

      public HexUtils()
  • Method Details

    • getDec

      public static int getDec(int index)
    • getHex

      public static byte getHex(int index)
    • toHexString

      public static String toHexString(char c)
    • toHexString

      public static String toHexString(byte[] bytes)
    • fromHexString

      public static byte[] fromHexString(String input)