You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser.
-
V
private void memoryDifference(String rem){
System.gc();
System.gc();
System.gc();
long memoryTotal = Runtime.getRuntime().totalMemory();
long memoryFree = Runtime.getRuntime().freeMemory();
int memoryUsed1 = (int) (memoryTotal - memoryFree)...