Is there a way to modify the jvm args from inside of the jvm? Specifically, I want to be able to change the maximum heap size of the jvm from inside of it. Is this possibl
With JRockit you can at least suggest a heap size.
JVMFactory.getJVM().getMemorySystem().suggestHeapSize(100*1000*1000);
See JMAPI for more information