[/url] [url=file:///F:/资料/文字资料/j2sdk-1_4_2-doc/docs/api/overview-summary.html]Overview
Class
JavaTM 2 Platform
Std. Ed. v1.4.2
SUMMARY: NESTED | FIELD | CONSTR | METHOD
DETAIL: FIELD | CONSTR | METHOD
java.io
Class CharArrayWriterjava.lang.Object
java.io.Writer
java.io.CharArrayWriter
public class CharArrayWriter extends WriterThis class implements a character buffer that can be used as an Writer. The buffer automatically grows when data is written to the stream. The data can be retrieved using toCharArray() and toString(). 该类实现了一个字符缓冲,可以作为Writer使用。当数据写入该流时,缓冲会自动增长。 使用toCharArray()和toString()可以获取数据。
Since: JDK1.1 Field Summary
protected char[]
The buffer where data is stored. 数据存入的缓冲。
protected int
The number of chars in the buffer. 缓冲中的字符数。
Fields inherited from class java.io.Writer
Constructor Summary
Creates a new CharArrayWriter. 创建一个CharArrayWriter。
CharArrayWriter(int initialSize)
Creates a new CharArrayWriter with the specified initial size. 创建一个指定初始大小的CharArrayWriter。
Method Summary
void
close()
Close the stream. 关闭流。
void
flush()
Flush the stream. 刷新流。
void
reset()
Resets the buffer so that you can use it again without throwing away the already allocated buffer. 重置缓冲,可以使你再次使用,而不用抛出已分配的缓冲。
int
size()
Returns the current size of the buffer. 返回缓冲的当前大小。
char[]
Returns a copy of the input data. 返回输入数据的拷贝。
toString()
Converts input data to a string. 将输入数据转换成字符串。
void
,]write(char[] c, int off, int len)
Writes characters to the buffer. 向缓冲写入字符。
void
write(int c)
Writes a character to the buffer. 向缓冲写入一个字符。
void
write(String str, int off, int len)
Write a portion of a string to the buffer. 向缓冲写入一段字符串。
void
Writes the contents of the buffer to another character stream. 将缓冲的内容写入另一个字符流。
Methods inherited from class java.io.Writer
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Field Detail
bufprotected char[] buf
The buffer where data is stored. 数据存入的缓冲。
countprotected int count
The number of chars in the buffer. 缓冲中的字符数。
Constructor Detail
CharArrayWriterpublic CharArrayWriter()
Creates a new CharArrayWriter. 创建一个CharArrayWriter。
CharArrayWriterpublic CharArrayWriter(int initialSize)
Creates a new CharArrayWriter with the specified initial size. 创建一个指定初始大小的CharArrayWriter。
Parameters: initialSize - an int specifying the initial buffer size. 指定初始缓冲大小的int值。 Throws: IllegalArgumentException - if initialSize is negative 如果initialSize为负时抛出Method Detail
writepublic void write(int c)
Writes a character to the buffer. 向缓冲写入一个字符。
Overrides: write in class WriterParameters: c - int specifying a character to be written. 指定被写入字符的int值writepublic void write(char[] c,
int off,
int len)
Writes characters to the buffer. 向缓冲写入字符。
Specified by: ,]write in class WriterParameters: c - the data to be written 写入的数据 off - the start offset in the data 数据的起始偏移 len - the number of chars that are written 写入的字符数writepublic void write(String str,
int off,
int len)
Write a portion of a string to the buffer. 向缓冲写入一段字符串。
Overrides: write in class WriterParameters: str - String to be written from 被写入的字符串 off - Offset from which to start reading characters 开始读取字符的偏移位置 len - Number of characters to be written 写入的字符数writeTopublic void writeTo(Writer out)
throws IOException
Writes the contents of the buffer to another character stream. 将缓冲的内容写入另一个字符流。
Parameters: out - the output stream to write to 写入的输出流 Throws: IOException - If an I/O error occurs. 如果I/O错误发生时抛出。resetpublic void reset()
Resets the buffer so that you can use it again without throwing away the already allocated buffer. 重置缓冲,可以使你再次使用,而不用抛出已分配的缓冲。
toCharArraypublic char[] toCharArray()
Returns a copy of the input data. 返回输入数据的拷贝。
Returns: an array of chars copied from the input data. 从输出数据拷贝的字符数组。sizepublic int size()
Returns the current size of the buffer. 返回缓冲的当前大小。
Returns: an int representing the current size of the buffer. 表示缓冲当前大小的int值。toStringpublic String toString()
Converts input data to a string. 将输入数据转换成字符串。
Overrides: toString in class ObjectReturns: the string. 字符串。flushpublic void flush()
Flush the stream. 刷新流。
Specified by: flush in class Writerclosepublic void close()
Close the stream. This method does not release the buffer, since its contents might still be required. 关闭流。该方法不释放缓冲,因为它的内容可能仍有需要。
Specified by: close in class Writer[/url][url=file:///F:/资料/文字资料/j2sdk-1_4_2-doc/docs/api/overview-summary.html]Overview
Class
JavaTM 2 Platform
Std. Ed. v1.4.2
SUMMARY: NESTED | FIELD | CONSTR | METHOD
DETAIL: FIELD | CONSTR | METHOD
For further API reference and developer documentation, see Java 2 SDK SE Developer Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples. Copyright 2003 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.