|
keycloak
|


公開メンバ関数 | |
| InputStream (java.io.InputStream in) | |
| InputStream (java.io.InputStream in, int options) | |
| int | read () throws java.io.IOException |
| int | read (byte[] dest, int off, int len) throws java.io.IOException |
非公開変数類 | |
| boolean | encode |
| int | position |
| byte [] | buffer |
| int | bufferLength |
| int | numSigBytes |
| int | lineLength |
| boolean | breakLines |
| int | options |
| byte [] | decodabet |
A Base64.InputStream will read data from another java.io.InputStream, given in the constructor, and encode/decode to/from Base64 notation on the fly.
|
inline |
Constructs a Base64.InputStream in DECODE mode.
| in | the java.io.InputStream from which to read data. |
|
inline |
Constructs a Base64.InputStream in either ENCODE or DECODE mode.
Valid options:
ENCODE or DECODE: Encode or Decode as data is read. DO_BREAK_LINES: break lines at 76 characters (only meaningful when encoding)
Example: new Base64.InputStream( in, Base64.DECODE )
| in | the java.io.InputStream from which to read data. |
| options | Specified options |
|
inline |
Reads enough of the input stream to convert to/from Base64 and returns the next byte.
encode &&
|
inline |
Calls read() repeatedly until the end of stream is reached or len bytes are read. Returns number of bytes read into array or -1 if end of stream is encountered.
| dest | array to hold values |
| off | offset for array |
| len | max number of bytes to read into array |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
1.8.13