返回介绍

java.io 类 StringWriter

发布于 2019-10-04 09:50:53 字数 9221 浏览 851 评论 0 收藏 0

java.lang.Object
  └java.io.Writer
      └java.io.StringWriter
所有已实现的接口:
Closeable, Flushable, Appendable

public class StringWriter
extends Writer
 

一个字符流,可以用其回收在字符串缓冲区中的输出来构造字符串。

关闭 StringWriter 无效。在关闭此流后且没有生成 IOException 时,可以调用此类中的该方法。

从以下版本开始:
JDK1.1

字段摘要
从类 java.io.Writer 继承的字段
lock
构造方法摘要
StringWriter()

创建具有默认初始字符串缓冲区大小的新字符串 writer。

StringWriter(intinitialSize)

创建具有指定初始字符串缓冲区大小的新字符串 writer。

方法摘要
StringWriterappend(charc)

将指定字符追加到此 writer。

StringWriterappend(CharSequencecsq)

将指定的字符序列追加到此 writer。

StringWriterappend(CharSequencecsq, intstart, intend)

将指定字符序列的子序列追加到此 writer。

voidclose()

关闭 StringWriter 无效。

voidflush()

刷新该流的缓冲。

StringBuffergetBuffer()

返回该字符串缓冲区本身。

StringtoString()

以字符串的形式返回该缓冲区的当前值。

voidwrite(char[]cbuf, intoff, intlen)

写入字符数组的某一部分。

voidwrite(intc)

写入单个字符。

voidwrite(Stringstr)

写入一个字符串。

voidwrite(Stringstr, intoff, intlen)

写入字符串的某一部分。

从类 java.io.Writer 继承的方法
write
从类 java.lang.Object 继承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait

构造方法详细信息

StringWriter

public StringWriter()
创建具有默认初始字符串缓冲区大小的新字符串 writer。

StringWriter

public StringWriter(intinitialSize)
创建具有指定初始字符串缓冲区大小的新字符串 writer。
参数:
initialSize - 一个指定缓冲区初始大小的 int。

方法详细信息

write

public void write(intc)
写入单个字符。
覆盖:
Writer 中的 write
参数:
c - 指定要写入字符的 int。

write

public void write(char[]cbuf,
                  intoff,
                  intlen)
写入字符数组的某一部分。
指定者:
Writer 中的 write
参数:
cbuf - 字符数组
off - 开始写入字符处的偏移量
len - 要写入的字符数

write

public void write(Stringstr)
写入一个字符串。
覆盖:
Writer 中的 write
参数:
str - 要写入的字符串

write

public void write(Stringstr,
                  intoff,
                  intlen)
写入字符串的某一部分。
覆盖:
Writer 中的 write
参数:
str - 要写入的字符串
off - 开始写入字符处的偏移量
len - 要写入的字符数

append

public StringWriter append(CharSequencecsq)
将指定的字符序列追加到此 writer。

out.append(csq) 的形式调用此方法,行为与以下调用完全相同:

     out.write(csq.toString()) 

可能没有追加整个序列,这取决于对字符序列 csqtoString 指定。例如,调用一个字符缓冲区的 toString 方法将返回一个子序列,其内容取决于缓冲区的位置和限制。

指定者:
接口 Appendable 中的 append
覆盖:
Writer 中的 append
参数:
csq - 要追加的字符串序列。如果 csqnull ,则向此 writer 追加四个字符 "null"
返回:
此 writer
从以下版本开始:
1.5

append

public StringWriter append(CharSequencecsq,
                           intstart,
                           intend)
将指定字符序列的子序列追加到此 writer。

csq 不为 null 时,调用该方法的 out.append(csq、 start、 end) 形式,行为与以下调用完全相同:

     out.write(csq.subSequence(start, end).toString()) 
指定者:
接口 Appendable 中的 append
覆盖:
Writer 中的 append
参数:
csq - 子序列将被追加的字符序列。如果 csqnull ,则追加四个字符 "null" ,就好像 csq 包含它们一样。
start - 子序列中第一个字符的索引
end - 子序列中最后一个字符后面的字符的索引
返回:
此 writer
抛出:
IndexOutOfBoundsException - 如果 startend 为负,而 start 大于 end 或者 end 大于 csq.length()
从以下版本开始:
1.5

append

public StringWriter append(charc)
将指定字符追加到此 writer。

out.append(c) 的形式调用此方法,行为与以下调用完全相同:

     out.write(c) 
指定者:
接口 Appendable 中的 append
覆盖:
Writer 中的 append
参数:
c - 要追加的 16 位字符
返回:
此 writer
从以下版本开始:
1.5

toString

public String toString()
以字符串的形式返回该缓冲区的当前值。
覆盖:
Object 中的 toString
返回:
该对象的字符串表示形式。

getBuffer

public StringBuffer getBuffer()
返回该字符串缓冲区本身。
返回:
保存当前缓冲区值的 StringBuffer。

flush

public void flush()
刷新该流的缓冲。
指定者:
接口 Flushable 中的 flush
指定者:
Writer 中的 flush

close

public void close()
           throws IOException
关闭 StringWriter 无效。在关闭此流后且没有生成 IOException 时,可以调用此类中的该方法。
指定者:
接口 Closeable 中的 close
指定者:
Writer 中的 close
抛出:
IOException - 如果发生 I/O 错误

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文