|
|||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
java.io
类 StringBufferInputStream
java.lang.Object java.io.InputStream java.io.StringBufferInputStream
- 所有已实现的接口:
- Closeable
已过时。 此类未能正确地将字符转换为字节。从 JDK 1.1 开始,从字符串创建流的首选方法是通过
StringReader
类进行创建。
-
@Deprecated public class StringBufferInputStream
- extends InputStream
此类允许应用程序创建输入流,在该流中读取的字节由字符串内容提供。应用程序还可以使用 ByteArrayInputStream
从字节数组中读取字节。
只有字符串中每个字符的低八位可以由此类使用。
- 从以下版本开始:
- JDK1.0
- 另请参见:
-
ByteArrayInputStream
,StringReader
字段摘要 | |
---|---|
protected String |
buffer 已过时。 从中读取字节的字符串。 |
protected int |
count 已过时。 输入流缓冲区中有效字符数。 |
protected int |
pos 已过时。 要从输入流缓冲区中读取的下一个字符的索引。 |
构造方法摘要 | |
---|---|
StringBufferInputStream(String s) 已过时。 创建一个字符串输入流,以从指定字符串读取数据。 |
方法摘要 | |
---|---|
int |
available() 已过时。 返回无阻塞情况下可以从此输入流读取的字节数。 |
int |
read() 已过时。 从此输入流中读取下一个数据的字节。 |
int |
read(byte[] b, int off, int len) 已过时。 将最多 len 个数据字节从此输入流读入字节数组。 |
void |
reset() 已过时。 将输入流重置为开始读取此输入流的基础缓冲区的第一个字符处。 |
long |
skip(long n) 已过时。 从此输入流中跳过输入的 n 个字节。 |
从类 java.io.InputStream 继承的方法 |
---|
close, mark, markSupported, read |
从类 java.lang.Object 继承的方法 |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
字段详细信息 |
---|
buffer
protected String buffer
- 已过时。
-
从中读取字节的字符串。
pos
protected int pos
- 已过时。
-
要从输入流缓冲区中读取的下一个字符的索引。
- 另请参见:
-
buffer
count
protected int count
- 已过时。
-
输入流缓冲区中有效字符数。
- 另请参见:
-
buffer
构造方法详细信息 |
---|
StringBufferInputStream
public StringBufferInputStream(String s)
- 已过时。
-
创建一个字符串输入流,以从指定字符串读取数据。
- 参数:
-
s
- 基本输入缓冲区。
方法详细信息 |
---|
read
public int read()
- 已过时。
-
从此输入流中读取下一个数据的字节。返回
0
到255
范围内的int
字节值。如果因流的末尾已到达而没有可用的字节,则返回值-1
。StringBufferInputStream
的read
方法不会阻塞。它返回此输入流的缓冲区中下一个字符的低八位。 -
- 指定者:
-
类
InputStream
中的read
-
- 返回:
-
下一个数据字节,如果到达流的末尾,则返回
-1
。
read
public int read(byte[] b, int off, int len)
- 已过时。
-
将最多
len
个数据字节从此输入流读入字节数组。StringBufferInputStream
的read
方法不会阻塞。它将此输入流的缓冲区中字符的低八位复制到字节数组参数中。 -
- 覆盖:
-
类
InputStream
中的read
-
- 参数:
-
b
- 读入数据的缓冲区。 -
off
- 数据的初始偏移量。 -
len
- 读取的最多字节数。 - 返回:
-
读入缓冲区的总字节数,如果由于流末尾已到达而不再有数据,则返回
-1
。 - 另请参见:
-
InputStream.read()
skip
public long skip(long n)
- 已过时。
-
从此输入流中跳过输入的
n
个字节。如果已到达输入流的末尾,则可能会跳过非常少的字节。 -
- 覆盖:
-
类
InputStream
中的skip
-
- 参数:
-
n
- 要跳过的字节数。 - 返回:
- 跳过的实际字节数。
available
public int available()
- 已过时。
- 返回无阻塞情况下可以从此输入流读取的字节数。
-
- 覆盖:
-
类
InputStream
中的available
-
- 返回:
-
count - pos
的值,它是要从输入缓冲区中读取的剩余字节数。
reset
public void reset()
- 已过时。
- 将输入流重置为开始读取此输入流的基础缓冲区的第一个字符处。
-
- 覆盖:
-
类
InputStream
中的reset
-
- 另请参见:
-
InputStream.mark(int)
,IOException