Package org.apache.wiki.util
Class ByteUtils
- java.lang.Object
-
- org.apache.wiki.util.ByteUtils
-
public class ByteUtils extends java.lang.Object
A collection of static byte utility methods.- Author:
- Ichiro Furusato
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.lang.String
byte2hex(byte b)
byte to hex conversion.static java.lang.String
bytes2hex(byte[] bytes)
byte[] array to hex conversion.static int
hexToBin(char c)
Converts a single hex character into its integer equivalent.static byte[]
parseHexBinary(java.lang.String hex)
Parses a hexadecimal string into its corresponding bytes.
-
-
-
Method Detail
-
bytes2hex
public static java.lang.String bytes2hex(byte[] bytes)
byte[] array to hex conversion. Note that this provides no delimiters; the bytes are simply concatenated.
-
byte2hex
public static java.lang.String byte2hex(byte b)
byte to hex conversion.
-
parseHexBinary
public static byte[] parseHexBinary(java.lang.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.
-
-