I am having over 20s 5000x30 double arrays and each of which will be written to text files using:
PrintWriter test = new PrintWriter(new BufferedWriter(new FileWriter("test.txt")));
The processing took me over 10 minutes and I'd like to see if there is any alternative way to speed up the process.