ByteArrayWriterpublic final class LockedRandomAccessFileWriter extends java.lang.Object implements ByteArrayWriter
RandomAccessFile as writer.
In opposite to RandomAccessFileWriter, this writer uses FileLocks to support writing from
multiple processes into the same file.
| Constructor | Description |
|---|---|
LockedRandomAccessFileWriter(java.io.RandomAccessFile file) |
| Modifier and Type | Method | Description |
|---|---|---|
void |
close() |
Closes this writer and releases any associated system resources.
|
void |
flush() |
Forces writing of any buffered data.
|
int |
readTail(byte[] data,
int offset,
int length) |
Reads the last bytes.
|
void |
truncate(int count) |
Truncates the file size.
|
void |
write(byte[] data,
int length) |
Outputs a byte array.
|
void |
write(byte[] data,
int offset,
int length) |
Outputs a byte array.
|
public LockedRandomAccessFileWriter(java.io.RandomAccessFile file)
file - Underlying random access filepublic int readTail(byte[] data,
int offset,
int length)
throws java.io.IOException
ByteArrayWriterThe bytes are read from the end of the current file. If the file size is equal to or greater than the passed length, the passed array is filled completely. Otherwise, the passed array is filled with the entire available file content and all remaining bytes of the array are left untouched.
readTail in interface ByteArrayWriterdata - Target byte array for storing the read bytesoffset - Start offset to fill passed byte arraylength - Maximum number of bytes to readjava.io.IOException - Reading failedpublic void write(byte[] data,
int length)
throws java.io.IOException
ByteArrayWriterwrite in interface ByteArrayWriterdata - Byte array to outputlength - Number of bytes to outputjava.io.IOException - Writing failedpublic void write(byte[] data,
int offset,
int length)
throws java.io.IOException
ByteArrayWriterwrite in interface ByteArrayWriterdata - Byte array to outputoffset - Start offset to outputlength - Number of bytes to outputjava.io.IOException - Writing failedpublic void truncate(int count)
throws java.io.IOException
ByteArrayWritertruncate in interface ByteArrayWritercount - Number of bytes to remove from the file endjava.io.IOException - Resizing failedpublic void flush()
ByteArrayWriterflush in interface ByteArrayWriterpublic void close()
throws java.io.IOException
ByteArrayWriterclose in interface ByteArrayWriterjava.io.IOException - Closing failedCopyright © 2022. All rights reserved.