2021-10-8 PrintWriter

目录

1.描述

2.变量

3.构造方法

4.普通方法


1.描述

  • 将对象的格式表示打印到文本输出流。

2.变量

Modifier and TypeField and Description
protected Writerout

本的基础字符输出流 PrintWriter

 Fields inherited from class java.io.Writer

lock

3.构造方法

Constructor and Description
PrintWriter(File file)

使用指定的文件创建一个新的PrintWriter,而不需要自动的线路刷新。

PrintWriter(File file, String csn)

使用指定的文件和字符集创建一个新的PrintWriter,而不需要自动进行线条刷新。

PrintWriter(OutputStream out)

从现有的OutputStream创建一个新的PrintWriter,而不需要自动线路刷新。

PrintWriter(OutputStream out, boolean autoFlush)

从现有的OutputStream创建一个新的PrintWriter。

PrintWriter(String fileName)

使用指定的文件名创建一个新的PrintWriter,而不需要自动执行行刷新。

PrintWriter(String fileName, String csn)

使用指定的文件名和字符集创建一个新的PrintWriter,而不需要自动线路刷新。

PrintWriter(Writer out)

创建一个新的PrintWriter,没有自动线冲洗。

PrintWriter(Writer out, boolean autoFlush)

创建一个新的PrintWriter。

4.普通方法

Modifier and TypeMethod and Description
PrintWriterappend(char c)

将指定的字符附加到此作者。

PrintWriterappend(CharSequence csq)

将指定的字符序列附加到此作者。

PrintWriterappend(CharSequence csq, int start, int end)

将指定字符序列的子序列附加到此作者。

booleancheckError()

如果流未关闭,请刷新流并检查其错误状态。

protected voidclearError()

清除此流的错误状态。

voidclose()

关闭流并释放与之相关联的任何系统资源。

voidflush()

刷新流。

PrintWriterformat(Locale l, String format, Object... args)

使用指定的格式字符串和参数将格式化的字符串写入此写入程序。

PrintWriterformat(String format, Object... args)

使用指定的格式字符串和参数将格式化的字符串写入此写入程序。

voidprint(boolean b)

打印布尔值。

voidprint(char c)

打印一个字符

voidprint(char[] s)

打印字符数组。

voidprint(double d)

打印双精度浮点数。

voidprint(float f)

打印浮点数。

voidprint(int i)

打印一个整数。

voidprint(long l)

打印一个长整数。

voidprint(Object obj)

打印一个对象。

voidprint(String s)

打印字符串。

PrintWriterprintf(Locale l, String format, Object... args)

使用指定的格式字符串和参数将格式化的字符串写入该writer的方便方法。

PrintWriterprintf(String format, Object... args)

使用指定的格式字符串和参数将格式化的字符串写入该writer的方便方法。

voidprintln()

通过写入行分隔符字符串来终止当前行。

voidprintln(boolean x)

打印一个布尔值,然后终止该行。

voidprintln(char x)

打印一个字符,然后终止该行。

voidprintln(char[] x)

打印字符数组,然后终止行。

voidprintln(double x)

打印双精度浮点数,然后终止行。

voidprintln(float x)

打印一个浮点数,然后终止该行。

voidprintln(int x)

打印一个整数,然后终止该行。

voidprintln(long x)

打印一个长整型,然后终止行。

voidprintln(Object x)

打印一个对象,然后终止该行。

voidprintln(String x)

打印一个字符串,然后终止行。

protected voidsetError()

表示发生错误。

voidwrite(char[] buf)

写入一个字符数组。

voidwrite(char[] buf, int off, int len)

写一个字符数组的一部分。

voidwrite(int c)

写一个字符

voidwrite(String s)

写一个字符串

voidwrite(String s, int off, int len)

写一个字符串的一部分。