I am writing a program in Java that requires me to compare the data in 2 files. I have to check each line from file 1 against each line of file 2 and if I find a match write the
I believe RandomAccessFile is what you need. It contains: RandomAccessFile#seek and RandomAccessFile#getFilePointer.
RandomAccessFile#seek
RandomAccessFile#getFilePointer
rewind() is seek(0)
rewind()
seek(0)