| Package | Description |
|---|---|
| java.io |
Contains Input/Output streams communication classes.
|
| java.lang |
Contains core language classes.
|
| Modifier and Type | Method and Description |
|---|---|
PrintStream |
PrintStream.append(char c)
Appends the specified character to this output stream.
|
PrintStream |
PrintStream.append(CharSequence csq)
Appends the specified character sequence to this output stream.
|
PrintStream |
PrintStream.append(CharSequence csq,
int start,
int end)
Appends a subsequence of the specified character sequence to this output stream.
|
| Modifier and Type | Field and Description |
|---|---|
static PrintStream |
System.err
The "standard" error output stream.
|
static PrintStream |
System.out
The "standard" output stream.
|
| Modifier and Type | Method and Description |
|---|---|
void |
Throwable.printStackTrace(PrintStream s)
Prints this throwable and its backtrace to the specified print stream.
|