public class BinaryUtils extends Object
构造器和说明 |
---|
BinaryUtils() |
限定符和类型 | 方法和说明 |
---|---|
static byte[] |
fromBase64(String b64Data)
Converts a Base64-encoded string to the original byte data.
|
static byte[] |
fromHex(String hexData)
Converts a Hex-encoded data string to the original byte data.
|
static String |
toBase64(byte[] data)
Converts byte data to a Base64-encoded string.
|
static String |
toHex(byte[] data)
Converts byte data to a Hex-encoded string.
|
static InputStream |
toStream(ByteBuffer byteBuffer)
Wraps a ByteBuffer in an InputStream.
|
public static String toHex(byte[] data)
data
- data to hex encode.public static byte[] fromHex(String hexData)
hexData
- hex-encoded data to decode.public static String toBase64(byte[] data)
data
- data to Base64 encode.public static byte[] fromBase64(String b64Data)
b64Data
- a Base64-encoded string to decode.public static InputStream toStream(ByteBuffer byteBuffer)
byteBuffer
- The ByteBuffer to wrap.Copyright © 2016. All rights reserved.