I have read some data from a textfile using fileinputstream, when it reaches a certain area in the text file, the reading is stopped to do some other process[Say process A] (which uses the data read by fileinputstream till now). This new process which is started makes this fileinputstream to point to the end of file.
My question here is after the process A is completed how to return to the original place where the fileinputstream had left. I use Java version 1.7