Module java.base
Package java.io

Class StringBufferInputStream

java.lang.Object
java.io.InputStream
java.io.StringBufferInputStream
All Implemented Interfaces:
Closeable, AutoCloseable

@Deprecated public class StringBufferInputStream extends InputStream
Deprecated.
This 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.

Since:
1.0
See Also: