Моя программа компилируется и записывает в файл .txt, однако записывает только последний размер набора данных 1000. Я пытаюсь заставить его записать все десять размеров в один файл .txt. Если я уберу метод PrintSteam, полный вывод будет включать все десять наборов данных. Как заставить все десять записывать в файл .txt? Ниже представлен основной код и раздел из класса BenchmarkSorts, записывающий в файл.
import java.io.IOException;
import java.io.FileNotFoundException;
public class SortMain {
public static void main(String[] args) throws Exception, IOException, FileNotFoundException {
int[] sizes = {100, 200, 300, 400, 500, 600, 700, 800, 900, 1000};
new BenchmarkSorts(sizes);
}
}
try {
// Creating a File object that represents the disk file.
PrintStream o = new PrintStream(new File("BenchmarkSort.txt"));
// Store current System.out before assigning a new value
PrintStream console = System.out;
// Assign o to output stream
System.setOut(o);
// Produces output
System.out.println("Data Set Size (n): " + arraySize +
"\n\tIterative Selection Sort Results: \t\t\t\t\tRecursive Selection Sort Results:" +
"\n\tAverage Critical Operation Count: " + Math.round(iterativeAverageCount) +
"\t\t\tAverage Critical Operation Count: " + Math.round(recursiveAverageCount) +
"\n\tStandard Deviation of Count: " + Math.round(iterativeSDCount) +
"\t\t\t\t\tStandard Deviation of Count: " + Math.round(recursiveSDCount) +
"\n\tAverage Execution Time: " + Math.round(iterativeAverageTime) +
"\t\t\t\t\t\tAverage Execution Time: " + Math.round(recursiveAverageTime) +
"\n\tStandard Deviation of Time: " + Math.round(iterativeSDTime) +
"\t\t\t\t\t\tStandard Deviation of Time: " + Math.round(recursiveSDTime));
// Use stored value for output stream
System.setOut(console);
System.out.println("Output File is now BenchmarkSort.txt");
}
catch(FileNotFoundException ex) {
}