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

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

Introduction

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

The text is from its open source code.

Implementation

org.apache.commons.vfs.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.
longgetFilePointer()
Returns the current offset in this file.
InputStreamgetInputStream()
get the input stream
Notice: If you use #seek(long) you have to reget the InputStream
bytereadByte()
Reads and returns one input byte.
voidseek(long pos)
Sets the file-pointer offset, measured from the beginning of this file, at which the next read or write occurs.
voidwrite(int b)
Writes to the output stream the eight low-order bits of the argument b.