Start of Tutorial > Start of Trail > Start of Lesson |
Search
Feedback Form |
The input and output streams in this lesson so far have been sequential access streams--streams whose contents must be read or written sequentially. Although such streams are incredibly useful, they are a consequence of a sequential medium, such as paper and magnetic tape. A random access files, on the other hand, permit nonsequential, or random, access to a file's contents.So why might you need random access files? Consider the archive format called ZIP. A ZIP archive contains files and is typically compressed to save space. It also contain a dir-entry at the end that indicates where the various files contained within the ZIP archive begin:
Suppose that you want to extract a specific file from a ZIP archive. If you use a sequential access stream, you have to: Using this algorithm, on average, you'd have to read half the ZIP archive before finding the file that you wanted to extract. You can extract the same file from the ZIP archive more efficiently by using the seek feature of a random access file and following these steps:
- Open the ZIP archive.
- Search through the ZIP archive until you located the file you wanted to extract.
- Extract the file.
- Close the ZIP archive.
This algorithm is more efficient because you read only the dir-entry and the file that you want to extract.
- Open the ZIP archive.
- Seek to the dir-entry and locate the entry for the file you want to extract from the ZIP archive.
- Seek (backward) within the ZIP archive to the position of the file to extract.
- Extract the file.
- Close the ZIP archive.
The
RandomAccessFile
class in thejava.io
package implements a random access file.
Unlike the input and output stream classes injava.io
,RandomAccessFile
is used for both reading and writing files. You create aRandomAccessFile
object with different arguments depending on whether you intend to read or write.
RandomAccessFile
is somewhat disconnected from the input and output streams injava.io
; that is, it doesn't inherit from theInputStream
orOutputStream
. This has some disadvantages in that you can't apply the same filters toRandomAccessFiles
that you can to streams. However,RandomAccessFile
does implement theDataInput
andDataOutput
interfaces, so if you design a filter that works for eitherDataInput
orDataOutput
, it will work on some sequential access files (the ones that implementedDataInput
orDataOutput
) as well as on anyRandomAccessFile
.
Start of Tutorial > Start of Trail > Start of Lesson |
Search
Feedback Form |
Copyright 1995-2005 Sun Microsystems, Inc. All rights reserved.