public class RandomAccessFiles extends Object
Constructor and Description |
---|
RandomAccessFiles() |
Modifier and Type | Method and Description |
---|---|
static byte[] |
read(RandomAccessFile input,
long position,
int length)
Reads a byte array starting at "position" for "length" bytes.
|
public RandomAccessFiles()
public static byte[] read(RandomAccessFile input, long position, int length) throws IOException
input
- The source RandomAccessFile.position
- The offset position, measured in bytes from the beginning of the file, at which to set the file pointer.length
- How many bytes to read.IOException
- If the first byte cannot be read for any reason other than end of file, or if the random access file has been closed, or if some
other I/O error occurs.Copyright © 2002–2023 The Apache Software Foundation. All rights reserved.