| Package | Description |
|---|---|
| java.io |
| Modifier and Type | Method and Description |
|---|---|
PrintWriter |
PrintWriter.append(char c)
Appends the specified character to this writer.
|
PrintWriter |
PrintWriter.append(CharSequence csq)
Appends the specified character sequence to this writer.
|
PrintWriter |
PrintWriter.append(CharSequence csq,
int start,
int end)
Appends a subsequence of the specified character sequence to this writer.
|
PrintWriter |
PrintWriter.format(String format,
Object... args)
Writes a formatted string to this writer using the specified format
string and arguments.
|
PrintWriter |
PrintWriter.printf(String format,
Object... args)
A convenience method to write a formatted string to this writer using
the specified format string and arguments.
|
Copyright © 2013 API Design. All Rights Reserved.