Java org.apache.commons.vfs2 RandomAccessContent fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.vfs2 RandomAccessContent fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.vfs2 RandomAccessContent.

The text is from its open source code.

Implementation

org.apache.commons.vfs2.RandomAccessContent has the following implementations.
Click this link to see all its implementation.

Method

voidclose()
Closes this random access file stream and releases any system resources associated with the stream.
InputStreamgetInputStream()
Get the input stream.
voidreadFully(byte b[])
Reads some bytes from an input stream and stores them into the buffer array b .
voidseek(long pos)
Sets the file-pointer offset, measured from the beginning of this file, at which the next read or write occurs.
intskipBytes(int n)
Makes an attempt to skip over n bytes of data from the input stream, discarding the skipped bytes.