public class EncodedDataOutputStream extends UnbufferedDataOutputStreamPlus
channel| Constructor and Description |
|---|
EncodedDataOutputStream(java.io.OutputStream out) |
| Modifier and Type | Method and Description |
|---|---|
void |
write(byte[] b)
Writes the entire contents of the byte array
buffer to
this RandomAccessFile starting at the current file pointer. |
void |
write(byte[] b,
int off,
int len)
Writes
count bytes from the byte array buffer
starting at offset to this RandomAccessFile starting at
the current file pointer.. |
void |
write(int b)
Writes the specified byte
oneByte to this RandomAccessFile
starting at the current file pointer. |
void |
writeInt(int v)
Writes a 32-bit int to this output stream.
|
void |
writeLong(long v)
Writes a 64-bit long to this output stream.
|
void |
writeShort(int v)
Writes the specified 16-bit short to the OutputStream.
|
applyToChannel, write, write, writeBoolean, writeByte, writeBytes, writeChar, writeChars, writeDouble, writeFloat, writeUTF, writeUTFnewDefaultChannel, retrieveTemporaryBufferpublic void write(int b)
throws java.io.IOException
UnbufferedDataOutputStreamPlusoneByte to this RandomAccessFile
starting at the current file pointer. Only the low order byte of
oneByte is written.write in interface java.io.DataOutputwrite in class UnbufferedDataOutputStreamPlusb - the byte to be writtenjava.io.IOException - If an error occurs attempting to write to this
RandomAccessFile.public void write(byte[] b)
throws java.io.IOException
UnbufferedDataOutputStreamPlusbuffer to
this RandomAccessFile starting at the current file pointer.write in interface java.io.DataOutputwrite in class UnbufferedDataOutputStreamPlusb - the buffer to be written.java.io.IOException - If an error occurs trying to write to this RandomAccessFile.public void write(byte[] b,
int off,
int len)
throws java.io.IOException
UnbufferedDataOutputStreamPluscount bytes from the byte array buffer
starting at offset to this RandomAccessFile starting at
the current file pointer..write in interface java.io.DataOutputwrite in class UnbufferedDataOutputStreamPlusb - the bytes to be writtenoff - offset in buffer to get byteslen - number of bytes in buffer to writejava.io.IOException - If an error occurs attempting to write to this
RandomAccessFile.public void writeInt(int v)
throws java.io.IOException
UnbufferedDataOutputStreamPluswriteInt in interface java.io.DataOutputwriteInt in class UnbufferedDataOutputStreamPlusv - the int to be written.java.io.IOException - If an error occurs attempting to write to this
DataOutputStream.public void writeLong(long v)
throws java.io.IOException
UnbufferedDataOutputStreamPluswriteLong in interface java.io.DataOutputwriteLong in class UnbufferedDataOutputStreamPlusv - the long to be written.java.io.IOException - If an error occurs attempting to write to this
DataOutputStream.public void writeShort(int v)
throws java.io.IOException
UnbufferedDataOutputStreamPluswriteShort in interface java.io.DataOutputwriteShort in class UnbufferedDataOutputStreamPlusv - the short to be writtenjava.io.IOException - If an error occurs attempting to write to this
DataOutputStream.Copyright © 2018 The Apache Software Foundation