Class RandomAccessFiles


  • public class RandomAccessFiles
    extends java.lang.Object
    Works on RandomAccessFile.
    Since:
    2.13.0
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static byte[] read​(java.io.RandomAccessFile input, long position, int length)
      Reads a byte array starting at "position" for "length" bytes.
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • RandomAccessFiles

        public RandomAccessFiles()
    • Method Detail

      • read

        public static byte[] read​(java.io.RandomAccessFile input,
                                  long position,
                                  int length)
                           throws java.io.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:
        java.io.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.