php    php100   android
当前位置:首页 » java.io包 »

Java.io.StringBufferInputStream类

评论  编辑

The java.util.StringBufferInputStream 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.

This class has been deprecated by Oracle and should not be used any more.

类声明

以下是声明java.util.StringBufferInputStream class:

public class StringBufferInputStream
   extends InputStream

字段域

Following are the fields for java.util.StringBufferInputStream class:

  • protected String buffer -- This is the string from which bytes are read..

  • protected int count -- This is the number of valid characters in the input stream buffer.

  • protected int pos -- This is the index of the next character to read from the input stream buffer.

类构造方法

S.N.构造方法 & 详细描述
1StringBufferInputStream(String s)
This creates a string input stream to read data from the specified string.

类方法

S.N.方法 & 描述
1int available()
This method returns the number of bytes that can be read from the input stream without blocking.
2int read()
This method reads the next byte of data from this input stream.
3int read(byte[] b, int off, int len)
This method reads up to len bytes of data from this input stream into an array of bytes.
4void reset()
This method resets the input stream to begin reading from the first character of this input stream's underlying buffer.
5long skip(long n)
This method skips n bytes of input from this input stream.

方法继承

此类从以下类继承了上面列出的方法

  • java.util.InputStreams

  • java.util.Object


贡献/合作者

正在开放中...
 

评论(条)

  • 还没有评论!