Class RandomAccessFiles

java.lang.Object
org.apache.commons.io.RandomAccessFiles

public class RandomAccessFiles extends Object
Works on RandomAccessFile.
Since:
2.13.0
  • Constructor Details

  • Method Details

    • read

      public static byte[] read(RandomAccessFile input, long position, int length) throws IOException
      Reads a byte array starting at "position" for "length" bytes.
      Parameters:
      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.
      Returns:
      a new byte array.
      Throws:
      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.