public class BufferedFileOutput extends Object implements RandomAccess, DataOutput, Flushable, Closeable
DataOutput for RandomAccessFile.| Constructor and Description |
|---|
BufferedFileOutput(RandomAccessFile file,
byte[] buffer)
Creates a new instance.
|
BufferedFileOutput(RandomAccessFile file,
int bufferSize)
Creates a new instance.
|
| Modifier and Type | Method and Description |
|---|---|
void |
close() |
void |
flush() |
long |
getPosition()
Returns the current file position in bytes.
|
long |
getSize()
Returns the file size in bytes.
|
void |
seek(long position)
Sets cursor in the target file.
|
void |
sync()
Resets internal buffer.
|
void |
write(byte[] b) |
void |
write(byte[] b,
int off,
int len) |
void |
write(int b) |
void |
writeBoolean(boolean v) |
void |
writeByte(int v) |
void |
writeBytes(String s) |
void |
writeChar(int v) |
void |
writeChars(String s) |
void |
writeDouble(double v) |
void |
writeFloat(float v) |
void |
writeInt(int v) |
void |
writeLong(long v) |
void |
writeShort(int v) |
void |
writeUTF(String s) |
public BufferedFileOutput(RandomAccessFile file, int bufferSize)
bufferSize - the buffer sizefile - the target filepublic BufferedFileOutput(RandomAccessFile file, byte[] buffer)
buffer - internal bufferfile - the target filepublic void sync()
throws IOException
IOException - if failed by I/O errorpublic void seek(long position)
throws IOException
position - the new positionIOException - if failed by I/O errorpublic long getPosition()
throws IOException
IOException - if failed by I/O errorpublic long getSize()
throws IOException
IOException - if failed by I/O errorpublic void write(int b)
throws IOException
write in interface DataOutputIOExceptionpublic void write(byte[] b)
throws IOException
write in interface DataOutputIOExceptionpublic void write(byte[] b,
int off,
int len)
throws IOException
write in interface DataOutputIOExceptionpublic void writeBoolean(boolean v)
throws IOException
writeBoolean in interface DataOutputIOExceptionpublic void writeByte(int v)
throws IOException
writeByte in interface DataOutputIOExceptionpublic void writeShort(int v)
throws IOException
writeShort in interface DataOutputIOExceptionpublic void writeChar(int v)
throws IOException
writeChar in interface DataOutputIOExceptionpublic void writeInt(int v)
throws IOException
writeInt in interface DataOutputIOExceptionpublic void writeLong(long v)
throws IOException
writeLong in interface DataOutputIOExceptionpublic void writeFloat(float v)
throws IOException
writeFloat in interface DataOutputIOExceptionpublic void writeDouble(double v)
throws IOException
writeDouble in interface DataOutputIOExceptionpublic void writeBytes(String s) throws IOException
writeBytes in interface DataOutputIOExceptionpublic void writeChars(String s) throws IOException
writeChars in interface DataOutputIOExceptionpublic void writeUTF(String s) throws IOException
writeUTF in interface DataOutputIOExceptionpublic void flush()
throws IOException
flush in interface FlushableIOExceptionpublic void close()
throws IOException
close in interface Closeableclose in interface AutoCloseableIOExceptionCopyright © 2011–2018 Asakusa Framework Team. All rights reserved.