[ Web Proxy ]
URL:
Viewing: https://docs.oracle.com/en/java/javase/24/docs/api/java.base/java/io/StringBufferInputStream.html [Back]  [Original]

StringBufferInputStream (Java SE 24 & JDK 24)
Contents 
Hide sidebar ❮❯ Show sidebar
  1. Description
  2. Field Summary
  3. Constructor Summary
  4. Method Summary
  5. Field Details
    1. buffer
    2. pos
    3. count
  6. Constructor Details
    1. StringBufferInputStream(String)
  7. Method Details
    1. read()
    2. read(byte[], int, int)
    3. skip(long)
    4. available()
    5. reset()

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:


Web Proxy Viewer  |  New URL  |  Original Page