| Author |
How to move to the begining of a file
|
pradipta kumar rout
Ranch Hand
Joined: Sep 13, 2010
Posts: 43
|
|
Respected sir,
I am reding a fie and after some line I want to move to the beginning of the file ....
kindly give me some idea about this .......
As in 'C' we have fseek(); is there any method supporting to this application in java ...................
please give me some idea
Thank you
Pradipta kuamr rout
|
 |
Rob Spoor
Sheriff
Joined: Oct 27, 2005
Posts: 19216
|
|
|
Both FileChannel and RandomAccessFile allow you to set the absolute position. You can get a FileChannel from an existing FileInputStream, FileOutputStream or RandomAccessFile.
|
SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
|
 |
pradipta kumar rout
Ranch Hand
Joined: Sep 13, 2010
Posts: 43
|
|
Thank you..
Rob Spoor for your help..
|
 |
Rob Spoor
Sheriff
Joined: Oct 27, 2005
Posts: 19216
|
|
|
You're welcome.
|
 |
 |
|
|
subject: How to move to the begining of a file
|
|
|