response.appendLine("\tTotal Memory: " + Runtime.getRuntime().totalMemory());
response.appendLine("\tMax Memory: " + Runtime.getRuntime().maxMemory());
if ("-gc".equalsIgnoreCase(request.getArgument())) {
System.gc();
response.appendLine("And after System.gc():");
response.appendLine("\tFree Memory: " + Runtime.getRuntime().freeMemory());
response.appendLine("\tTotal Memory: " + Runtime.getRuntime().totalMemory());
response.appendLine("\tMax Memory: " + Runtime.getRuntime().maxMemory());
}