Does anyone have experience reading a large txt file (maybe 5MB) intoa JTextArea? I've tries using the .read() and using aBufferedFileReader to append lines to the JTextArea. Both have provedto be inefficient.
Read it all into a string first, then add it to the JTextArea.