public
classStringBufferInputStream
extends InputStream
Overview
Inheritance
Members
Usage
Source
Books
SinceJDK1.0
Version1.33, 05/05/07
Author(s)Arthur van Hoff
DeprecatedThis class does not properly convert characters into bytes. As
of JDK 1.1, the preferred way to create a stream from a
string is via the StringReader class.
This class allows an application to create an input stream in
which the bytes read are supplied by the contents of a string.
Applications can also read bytes from a byte array by using a
ByteArrayInputStream.
Only the low eight bits of each character in the string are used by
this class.
ByteArrayInputStream.Only the low eight bits of each character in the string are used by this class.