|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Object
|
+--java.io.OutputStream
|
+--iaik.security.ssl.SSLOutputStream
This is the OutputStream which is returned by SSLTransport.getOutputStream. It is public to allow the application to control buffering.
To enable SSL/TLS layer buffering use code like for example:
SSLSocket socket = new SSLSocket(...); SSLOutputStream out = (SSLOutputStream)socket.getOutputStream(); out.setAutoFlush(false); // data written to out will now be buffered out.write(1); out.write(2); out.flush();
setAutoFlush(boolean),
SSLTransport.getOutputStream()| Method Summary | |
void |
close()
Closes this output stream and releases any system resources associated with this stream. |
void |
flush()
Flushes this output stream and forces any buffered output bytes to be written out. |
boolean |
getAutoFlush()
Get the autoflush value. |
void |
setAutoFlush(boolean value)
Control the SSL layer buffering. |
void |
write(byte[] b)
Writes b.length bytes from the specified byte array
to this output stream. |
void |
write(byte[] b,
int off,
int len)
Writes len bytes from the specified byte array
starting at offset off to this output stream. |
void |
write(int b)
Writes the specified byte to this output stream. |
| Methods inherited from class java.lang.Object |
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait |
| Method Detail |
public void setAutoFlush(boolean value)
Note that buffering is only available when SSL is active, i.e. not before the handshake has been performed. Also note that you must call flush when autoflush is disabled to be sure data is sent.
public boolean getAutoFlush()
public void write(int b)
throws java.io.IOException
b - the byte.
public void write(byte[] b)
throws java.io.IOException
b.length bytes from the specified byte array
to this output stream.b - the data.
public void write(byte[] b,
int off,
int len)
throws java.io.IOException
len bytes from the specified byte array
starting at offset off to this output stream.b - the data.off - the start offset in the data.len - the number of bytes to write.
public void flush()
throws java.io.IOException
public void close()
throws java.io.IOException
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||