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