Hi : Can a RandomAccesFile ever be chained to Readers or Streams. ? Appreciate your reply -Thanks
Rob Ross
Bartender
Joined: Jan 07, 2002
Posts: 2205
posted
0
No it cannot. It's a unique class that stands on its own. However, it does implement DataOutput and DataInput, the same interfaces implemented by DataOutputStream and DataInputStream. This lets you treat data-writing and reading methods in a consistent way accross various class types, giving you some flexibility in how you use it. Rob