Package | Description |
---|---|
org.apache.commons.vfs |
The public VFS API.
|
org.apache.commons.vfs.provider |
The File Provider API, and utility classes.
|
org.apache.commons.vfs.provider.ftp |
The FTP File Provider.
|
org.apache.commons.vfs.provider.http | |
org.apache.commons.vfs.provider.local |
The Local File Provider.
|
org.apache.commons.vfs.provider.ram |
The RAM File Provider.
|
org.apache.commons.vfs.provider.sftp |
The SFTP Provider.
|
org.apache.commons.vfs.util |
Utility classes used by the VFS.
|
Modifier and Type | Method | Description |
---|---|---|
RandomAccessContent |
FileContent.getRandomAccessContent(RandomAccessMode mode) |
Returns an stream for reading/writing the file's content.
|
Modifier and Type | Method | Description |
---|---|---|
protected RandomAccessContent |
AbstractFileObject.doGetRandomAccessContent(RandomAccessMode mode) |
Creates access to the file for random i/o.
|
RandomAccessContent |
AbstractFileObject.getRandomAccessContent(RandomAccessMode mode) |
Returns an input/output stream to use to read and write the content of the file in and
random manner.
|
RandomAccessContent |
DefaultFileContent.getRandomAccessContent(RandomAccessMode mode) |
Returns an input/output stream to use to read and write the content of the file in an
random manner.
|
Constructor | Description |
---|---|
AbstractRandomAccessContent(RandomAccessMode mode) |
|
AbstractRandomAccessStreamContent(RandomAccessMode mode) |
Modifier and Type | Method | Description |
---|---|---|
protected RandomAccessContent |
FtpFileObject.doGetRandomAccessContent(RandomAccessMode mode) |
Modifier and Type | Method | Description |
---|---|---|
protected RandomAccessContent |
HttpFileObject.doGetRandomAccessContent(RandomAccessMode mode) |
Modifier and Type | Method | Description |
---|---|---|
protected RandomAccessContent |
LocalFile.doGetRandomAccessContent(RandomAccessMode mode) |
Modifier and Type | Method | Description |
---|---|---|
protected RandomAccessContent |
RamFileObject.doGetRandomAccessContent(RandomAccessMode mode) |
Constructor | Description |
---|---|
RamFileRandomAccessContent(RamFileObject file,
RandomAccessMode mode) |
Modifier and Type | Method | Description |
---|---|---|
protected RandomAccessContent |
SftpFileObject.doGetRandomAccessContent(RandomAccessMode mode) |
Modifier and Type | Field | Description |
---|---|---|
static RandomAccessMode |
RandomAccessMode.READ |
read
|
static RandomAccessMode |
RandomAccessMode.READWRITE |
read/write
|