Re: [osol-help] Need a fast ascii file reader in Java

2010-12-02 Thread stephen bond
I would use use Unix shell command "cat" to paste all files into 1 big file and then just read that file. the slowness is coming from too many open and close calls. when reading large files Java is as fast as python. -- This message posted from opensolaris.org __

[osol-help] Need a fast ascii file reader in Java

2010-11-26 Thread Girish Rao
Hi, My application needs to read around 5 small ascii (1-25lines) files. Currently I use the BufferedReader API to read ascii files. Can you suggest something faster than the below. Thanks private ArrayList readDataFile(String fileName) { String lineData; Li