changing the index positioning in InputStream

后端 未结 1 397
青春惊慌失措
青春惊慌失措 2021-01-02 19:42

I have a binary file which contains keys and after every key there is an image associated with it. I want to jump off different keys but could not find any method which chan

相关标签:
1条回答
  • 2021-01-02 19:59

    There's a long skip(long n) method that you may be able to use:

    Skips over and discards n bytes of data from this input stream. The skip method may, for a variety of reasons, end up skipping over some smaller number of bytes, possibly 0. This may result from any of a number of conditions; reaching end of file before n bytes have been skipped is only one possibility. The actual number of bytes skipped is returned. If n is negative, no bytes are skipped.

    As documented, you're not guaranteed that n bytes will be skipped, so doublecheck the returned value always. Note that this does not allow you to "skip backward", but if it's markSupported(), you can reset() first and then skip forward to an earlier position if you must.


    Other options

    You may also use java.io.RandomAccessFile, which as the name implies, permits random access with its seek(long pos) method.

    You mentioned images, so if you are using Java Advanced Imaging, another possible option is com.sun.media.jai.codec.FileSeekableStream, which is a SeekableStream that takes its input from a File or RandomAccessFile. Note that this class is not a committed part of the JAI API. It may be removed or changed in future releases of JAI.

    0 讨论(0)
提交回复
热议问题