19.09.2015 Views

Prentice.Hall.Introduction.to.Java.Programming,.Brief.Version.9th.(2014).[sharethefiles.com]

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

730 Chapter 19 Binary I/O<br />

«interface»<br />

java.io.DataInput<br />

«interface»<br />

java.io.DataOutput<br />

java.io.RandomAccessFile<br />

+RandomAccessFile(file: File, mode:<br />

String)<br />

+RandomAccessFile(name: String,<br />

mode: String)<br />

+close(): void<br />

+getFilePointer(): long<br />

+length(): long<br />

+read(): int<br />

+read(b: byte[]): int<br />

+read(b: byte[], off: int, len: int): int<br />

+seek(pos: long): void<br />

+setLength(newLength: long): void<br />

+skipBytes(int n): int<br />

+write(b: byte[]): void<br />

+write(b: byte[], off: int, len: int):<br />

void<br />

Creates a RandomAccessFile stream with the specified File object<br />

and mode.<br />

Creates a RandomAccessFile stream with the specified file name<br />

string and mode.<br />

Closes the stream and releases the resource associated with it.<br />

Returns the offset, in bytes, from the beginning of the file <strong>to</strong> where the<br />

next read or write occurs.<br />

Returns the length of this file.<br />

Reads a byte of data from this file and returns –1 at the end of stream.<br />

Reads up <strong>to</strong> b.length bytes of data from this file in<strong>to</strong> an array of bytes.<br />

Reads up <strong>to</strong> len bytes of data from this file in<strong>to</strong> an array of bytes.<br />

Sets the offset (in bytes specified in pos) from the beginning of the<br />

stream <strong>to</strong> where the next read or write occurs.<br />

Sets a new length for this file.<br />

Skips over n bytes of input.<br />

Writes b.length bytes from the specified byte array <strong>to</strong> this file,<br />

starting at the current file pointer.<br />

Writes len bytes from the specified byte array, starting at offset off,<br />

<strong>to</strong> this file.<br />

FIGURE 19.17 RandomAccessFile implements the DataInput and DataOutput interfaces with additional methods<br />

<strong>to</strong> support random access.<br />

Tip<br />

If the file is not intended <strong>to</strong> be modified, open it with the r mode. This prevents unintentional<br />

modification of the file.<br />

file pointer<br />

A random-access file consists of a sequence of bytes. A special marker called a file pointer is<br />

positioned at one of these bytes. A read or write operation takes place at the location of the file<br />

pointer. When a file is opened, the file pointer is set at the beginning of the file. When you<br />

read or write data <strong>to</strong> the file, the file pointer moves forward <strong>to</strong> the next data item. For example,<br />

if you read an int value using readInt(), the JVM reads 4 bytes from the file pointer,<br />

and now the file pointer is 4 bytes ahead of the previous location, as shown in Figure 19.18.<br />

For a RandomAccessFile raf, you can use the raf.seek(position) method <strong>to</strong> move<br />

the file pointer <strong>to</strong> a specified position. raf.seek(0) moves it <strong>to</strong> the beginning of the file, and<br />

raf.seek(raf.length()) moves it <strong>to</strong> the end of the file. Listing 19.8 demonstrates<br />

File pointer<br />

File<br />

byte<br />

byte<br />

… byte byte byte byte byte … byte byte byte byte byte<br />

(a) Before readInt()<br />

File pointer<br />

File<br />

byte<br />

byte<br />

…<br />

byte byte byte byte byte<br />

…<br />

byte byte byte byte byte<br />

(b) After readInt()<br />

FIGURE 19.18<br />

After an int value is read, the file pointer is moved 4 bytes ahead.

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!