Re: Java I/O Seeking
- From: Thomas Hawtin <usenet@xxxxxxxxxxxxxxxxx>
- Date: Sun, 28 Aug 2005 23:58:28 +0100
david.goodyear@xxxxxxxxx wrote:
I'm used to using streams in C++ where you can seek negatively, in java however it appears you can only seek positively. Does this mean a negative seek can only be achieved using a reset() and seek(with a positive argument), to have the effect of a negative seek. (Isn't that very in-efficient with buffers?)
InputStream doesn't have seek. It does have skip. Most streams are not random access. Most uses of stream-like objects do not require random access behaviour. So it doesn't make a great deal of sense to have a seek method.
What you probably want is RandomAccessFile.
Tom Hawtin -- Unemployed English Java programmer http://jroller.com/page/tackline/ .
- References:
- Java I/O Seeking
- From: david . goodyear
- Java I/O Seeking
- Prev by Date: Java I/O Seeking
- Next by Date: Re: Can MIDP 1.0 program run in MIDP 2.0 phones?
- Previous by thread: Java I/O Seeking
- Next by thread: Re: Java I/O Seeking
- Index(es):
Relevant Pages
|