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
Encodingencode クラス内 EncodingEncodingException - alwayspublic Buffer decode(byte[] in, int offset, int length) throws DecodingException
decode クラス内 EncodingDecodingException - on illegal characterspublic Buffer decode(Buffer in)
decode クラス内 EncodingEncoding.decode(byte[], int, int)public void decode(java.io.InputStream in,
Buffer out)
throws java.io.IOException
decode クラス内 EncodingDecodingExceptionjava.io.IOExceptionEncoding.decode(byte[], int, int)