I\'m reading a file which conatins 500000 rows. I\'m testing to see how multiple thread speed up the process....
private void multiThreadRead(int num){
Since file reading is mainly waiting for disk I/O, you have the problem that the disk won't spin faster just because it's used by many threads :)