Package org.terrier.utility.io

Examples of org.terrier.utility.io.RandomDataInput.seek()


   */
  public BitIn readReset(long startByteOffset, byte startBitOffset) throws IOException
  {
    try{
      RandomDataInput rdi = (RandomDataInput)rdim.clone();
      rdi.seek(startByteOffset);
      BitIn in = new BitInputStream(rdi);
      in.skipBits(startBitOffset);
      return in;
    } catch (CloneNotSupportedException e) {
      throw new WrappedIOException(e);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.