public class NativeOutputStream
extends java.io.OutputStream
OutputStream objects returned from
JavaHL methods.| Modifier and Type | Method and Description |
|---|---|
void |
close()
Flushes buffers, closes the underlying native stream, and
releases the native object.
|
void |
finalize() |
void |
write(byte[] b,
int off,
int len)
Writes
len bytes at offset off from
b to the underyling native stream. |
void |
write(int b)
Writes a single byte to the underyling native stream.
|
public void close()
throws java.io.IOException
close in interface java.io.Closeableclose in interface java.lang.AutoCloseableclose in class java.io.OutputStreamjava.io.IOExceptionOutputStream.close()public void write(int b)
throws java.io.IOException
write in class java.io.OutputStreamjava.io.IOExceptionOutputStream.write(int)public void write(byte[] b,
int off,
int len)
throws java.io.IOException
len bytes at offset off from
b to the underyling native stream.write in class java.io.OutputStreamjava.io.IOExceptionOutputStream.write(byte[],int,int)public void finalize()
finalize in class java.lang.Object