分享
 
 
 

java.io.CharArrayWriter翻译

王朝java/jsp·作者佚名  2006-01-10
窄屏简体版  字體: |||超大  

[/url] [url=file:///F:/资料/文字资料/j2sdk-1_4_2-doc/docs/api/overview-summary.html]Overview

Package

Class

Use

Tree

Deprecated

Index

Help

JavaTM 2 Platform

Std. Ed. v1.4.2

PREV CLASS NEXT CLASS

FRAMES NO FRAMES All Classes

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[]

buf

The buffer where data is stored. 数据存入的缓冲。

protected int

count

The number of chars in the buffer. 缓冲中的字符数。

Fields inherited from class java.io.Writer

lock

Constructor Summary

CharArrayWriter()

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[]

toCharArray()

Returns a copy of the input data. 返回输入数据的拷贝。

String

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

writeTo(Writer out)

Writes the contents of the buffer to another character stream. 将缓冲的内容写入另一个字符流。

Methods inherited from class java.io.Writer

)]write, write

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

Package

Class

Use

Tree

Deprecated

Index

Help

JavaTM 2 Platform

Std. Ed. v1.4.2

PREV CLASS NEXT CLASS

FRAMES NO FRAMES All Classes

SUMMARY: NESTED | FIELD | CONSTR | METHOD

DETAIL: FIELD | CONSTR | METHOD

Submit a bug or feature

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.

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有