public class SevenBit extends Encoding
コンストラクタ | 説明 |
---|---|
SevenBit() |
修飾子とタイプ | メソッド | 説明 |
---|---|---|
Buffer |
decode(byte[] in,
int offset,
int length) |
|
Buffer |
decode(Buffer in) |
We don't do any 8-bit checks like we do for decode(byte[])
|
void |
decode(java.io.InputStream in,
Buffer out) |
Copy in to out, unchanged
We don't do any 8-bit checks like we do for decode(byte[])
|
java.lang.String |
encode(byte[] in) |
Encode a byte array to a ASCII or ISO-8859-1 String.
|
java.lang.String |
getName() |
public java.lang.String encode(byte[] in) throws EncodingException
Encoding
encode
クラス内 Encoding
EncodingException
- alwayspublic Buffer decode(byte[] in, int offset, int length) throws DecodingException
decode
クラス内 Encoding
DecodingException
- on illegal characterspublic Buffer decode(Buffer in)
decode
クラス内 Encoding
Encoding.decode(byte[], int, int)
public void decode(java.io.InputStream in, Buffer out) throws java.io.IOException
decode
クラス内 Encoding
DecodingException
java.io.IOException
Encoding.decode(byte[], int, int)