Example usage for Java java.io PrintStream fields, constructors, methods, implement or subclass
The text is from its open source code.
PrintStream(OutputStream out) Creates a new print stream. | |
PrintStream(String fileName) Creates a new print stream, without automatic line flushing, with the specified file name. | |
PrintStream(File file) Creates a new print stream, without automatic line flushing, with the specified file. | |
PrintStream(boolean autoFlush, OutputStream out) | |
PrintStream(OutputStream out, boolean autoFlush) Creates a new print stream. | |
PrintStream(String fileName, String csn) Creates a new print stream, without automatic line flushing, with the specified file name and charset. | |
PrintStream(String fileName, Charset charset) Creates a new print stream, without automatic line flushing, with the specified file name and charset. | |
PrintStream(File file, String csn) Creates a new print stream, without automatic line flushing, with the specified file and charset. | |
PrintStream(File file, Charset charset) Creates a new print stream, without automatic line flushing, with the specified file and charset. | |
PrintStream(boolean autoFlush, Charset charset, OutputStream out) | |
PrintStream(OutputStream out, boolean autoFlush, String encoding) Creates a new print stream. | |
PrintStream(OutputStream out, boolean autoFlush, Charset charset) Creates a new print stream, with the specified OutputStream, automatic line flushing and charset. |
PrintStream | append(CharSequence csq) Appends the specified character sequence to this output stream. |
PrintStream | append(char c) Appends the specified character to this output stream. |
PrintStream | append(CharSequence csq, int start, int end) Appends a subsequence of the specified character sequence to this output stream. |
boolean | checkError() Flushes the stream and checks its error state. |
void | close() Closes the stream. |
void | flush() Flushes the stream. |
PrintStream | format(String format, Object... args) Writes a formatted string to this output stream using the specified format string and arguments. |
PrintStream | format(Locale l, String format, Object... args) Writes a formatted string to this output stream using the specified format string and arguments. |
Class> | getClass() Returns the runtime class of this Object . |
void | print(boolean b) Prints a boolean value. |
void | print(char c) Prints a character. |
void | print(int i) Prints an integer. |
void | print(long l) Prints a long integer. |
void | print(float f) Prints a floating-point number. |
void | print(double d) Prints a double-precision floating-point number. |
void | print(char s[]) Prints an array of characters. |
void | print(String s) Prints a string. |
void | print(Object obj) Prints an object. |
PrintStream | printf(String format, Object... args) A convenience method to write a formatted string to this output stream using the specified format string and arguments. |
PrintStream | printf(Locale l, String format, Object... args) A convenience method to write a formatted string to this output stream using the specified format string and arguments. |
void | println(boolean x) Prints a boolean and then terminate the line. |
void | println(char x) Prints a character and then terminate the line. |
void | println(int x) Prints an integer and then terminate the line. |
void | println(long x) Prints a long and then terminate the line. |
void | println(float x) Prints a float and then terminate the line. |
void | println(double x) Prints a double and then terminate the line. |
void | println(char[] x) Prints an array of characters and then terminate the line. |
void | println(String x) Prints a String and then terminate the line. |
void | println(Object x) Prints an Object and then terminate the line. |
void | println() Terminates the current line by writing the line separator string. |
String | toString() Returns a string representation of the object. |
void | write(byte buf[], int off, int len) Writes len bytes from the specified byte array starting at offset off to this stream. |
void | write(int b) Writes the specified byte to this stream. |
void | write(char[] buf) |
void | write(String s) |