public class HexCodec extends Object
| 构造器和说明 |
|---|
HexCodec() |
| 限定符和类型 | 方法和说明 |
|---|---|
static byte[] |
decode(byte[] data)
decode the HexCodec encoded input data.
|
static byte[] |
decode(String data)
decode the HexCodec encoded String data - whitespace will be ignored.
|
static int |
decode(String data,
OutputStream out)
decode the HexCodec encoded String data writing it to the given output stream,
whitespace characters will be ignored.
|
static byte[] |
decodeStrict(String str)
Decode the hexadecimal-encoded string strictly i.e. any non-hexadecimal characters will be
considered an error.
|
static byte[] |
decodeStrict(String str,
int off,
int len)
Decode the hexadecimal-encoded string strictly i.e. any non-hexadecimal characters will be
considered an error.
|
static byte[] |
encode(byte[] data)
encode the input data producing a HexCodec encoded byte array.
|
static byte[] |
encode(byte[] data,
int off,
int length)
encode the input data producing a HexCodec encoded byte array.
|
static int |
encode(byte[] data,
int off,
int length,
OutputStream out)
HexCodec encode the byte data writing it to the given output stream.
|
static int |
encode(byte[] data,
OutputStream out)
HexCodec encode the byte data writing it to the given output stream.
|
static String |
encodeToString(byte[] data) |
static String |
encodeToString(byte[] data,
int off,
int length) |
public static String encodeToString(byte[] data)
public static String encodeToString(byte[] data, int off, int length)
public static byte[] encode(byte[] data)
public static byte[] encode(byte[] data,
int off,
int length)
public static int encode(byte[] data,
OutputStream out)
throws IOException
IOExceptionpublic static int encode(byte[] data,
int off,
int length,
OutputStream out)
throws IOException
IOExceptionpublic static byte[] decode(byte[] data)
public static byte[] decode(String data)
public static int decode(String data, OutputStream out) throws IOException
IOExceptionpublic static byte[] decodeStrict(String str)
public static byte[] decodeStrict(String str, int off, int len)
Copyright © 2024 fossc. All rights reserved.