using randomAccessFile.readLine()
I'm in CF8, and so can't take advantage of the new I/O options in CF9. So I'm using
<cfset variables.randomAccessFile = createObject("java", "java.io.RandomAccessFile")>
<cfset line = variables.randomAccessFile.readLine()>
which works fine, until I want to do something like jump ahead to the 10,000th line. I can put the readline() in a loop and count up to the line needed, but this is causing it to timeout. Is there a single command something like seekLine(10000)? I see that there is for seeking a position, character by character, but not that I can find for seeking lines.
Thanks.
