gnu.gcj.io
Class SimpleSHSStream
- AutoCloseable, Closeable, DataOutput, Flushable
SimpleSHSStream(OutputStream out) - This method initializes an instance of
DataOutputStream to
write its data to the specified underlying OutputStream
|
byte[] | digest()
|
void | write(byte[] b, int off, int len) - This method writes
len bytes from the specified byte array
buf starting at position offset into the
buffer to the underlying output stream.
|
void | write(int b) - This method writes the specified byte (passed as an
int )
to the underlying output stream.
|
flush , size , write , write , writeBoolean , writeByte , writeBytes , writeChar , writeChars , writeDouble , writeFloat , writeInt , writeLong , writeShort , writeUTF |
clone , equals , extends Object> getClass , finalize , hashCode , notify , notifyAll , toString , wait , wait , wait |
SimpleSHSStream
public SimpleSHSStream(OutputStream out)
This method initializes an instance of DataOutputStream
to
write its data to the specified underlying OutputStream
out
- The subordinate OutputStream
to which this
object will write
write
public void write(byte[] b,
int off,
int len)
throws IOException
This method writes len
bytes from the specified byte array
buf
starting at position offset
into the
buffer to the underlying output stream.
- write in interface DataOutput
- write in interface DataOutputStream
len
- The number of bytes to write.
Copyright (C) 2000 Free Software Foundation
This file is part of libgcj.
This software is copyrighted work licensed under the terms of the
Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
details.