InputStream
to fetch bytes from a String. There are 3 modes how bytes can be processed: ALL
- all bytes are returned: both high and low byte of each characterSTRIP
- only low byte of each character is returnedASCII
- only low byte of each character is returned, but overloaded chars are marked with 0x3FInputStream
from a Java string so it can be used where InputStream
s are needed, like in XML parsers.
|
|
|
|
|
|
|
|
|
|