Class ByteUtils

java.lang.Object
org.apache.wiki.util.ByteUtils

public class ByteUtils
extends Object
A collection of static byte utility methods.
  • Method Details

    • bytes2hex

      public static String bytes2hex​(byte[] bytes)
      byte[] array to hex conversion. Note that this provides no delimiters; the bytes are simply concatenated.
    • byte2hex

      public static String byte2hex​(byte b)
      byte to hex conversion.
    • parseHexBinary

      public static byte[] parseHexBinary​(String hex)
      Parses a hexadecimal string into its corresponding bytes.
    • hexToBin

      public static int hexToBin​(char c)
      Converts a single hex character into its integer equivalent.