org.sblim.cimclient.internal.http.io
public class ASCIIPrintStream extends FilterOutputStream
Constructor Summary | |
---|---|
ASCIIPrintStream(OutputStream pStream)
Ctor.
| |
ASCIIPrintStream(OutputStream pStream, boolean pAutoFlush)
Ctor.
| |
ASCIIPrintStream(OutputStream pStream, boolean pAutoFlush, String pEncoding)
Ctor.
|
Method Summary | |
---|---|
Exception | checkError()
Returns the last exception caught
|
void | close() |
void | flush() |
void | print(boolean pValue)
Prints a boolean value
|
void | print(char c)
Prints a single character
|
void | print(int i)
Prints an integer value
|
void | print(long l)
Prints a long value
|
void | print(float f)
Prints a float value
|
void | print(double d)
Prints a double value
|
void | print(char[] pArray)
Prints a character array
|
void | print(String s)
Prints a string
|
void | print(Object pObj)
Prints an object
|
void | println()
Prints a newline |
void | println(boolean flag)
println
|
void | println(char c)
println
|
void | println(int i)
println
|
void | println(long l)
println
|
void | println(float f)
println
|
void | println(double d)
println
|
void | println(char[] ac)
println
|
void | println(String s)
println
|
void | println(Object obj)
println
|
protected void | setError() |
void | write(byte[] buf, int off, int len) |
void | write(int b) |
Parameters: pStream The underlying stream
Parameters: pStream
The underlying stream pAutoFlush
If true
the stream is autmatically flushed
after write.
Parameters: pStream
The underlying stream pAutoFlush
If true
the stream is autmatically flushed
after write. pEncoding
Ignored
Returns: The exception
Parameters: pValue The value
Parameters: c The character
Parameters: i The value
Parameters: l The value
Parameters: f The value
Parameters: d The value
Parameters: pArray The array
Parameters: s The string
Parameters: pObj The object
Parameters: flag
Parameters: c
Parameters: i
Parameters: l
Parameters: f
Parameters: d
Parameters: ac
Parameters: s
Parameters: obj