Lines Matching full:system
68 // Redirect the System's out and err streams to the console text area.
69 PrintStream oldOut = System.out;
70 PrintStream oldErr = System.err;
75 System.setOut(printStream);
76 System.setErr(printStream);
87 System.out.println("Processing completed successfully");
94 System.out.println(ex.getMessage());
105 System.gc();
108 System.out.println(msg("outOfMemoryInfo", configurationFileName));
121 // Restore the old System's out and err streams.
122 System.setOut(oldOut);
123 System.setErr(oldErr);