Obviously I could just iterate through lines until I get to the line I need but that seems very inefficient, especially since I'm working with ~58,000 lines. Is there a way in the Java API to go directly to a set line?
EDIT: For now I've just read all values into an ArrayList and then pulled values from there but if anyone has a better solution then feel free to post it.
