Java heap size - will this work?
- by UnCon
Hi,
I try this with NetBeans desktop application template - increasing heapsize (to 512 MiB) of executed .jar file. (I believe that NetBeans uses Singleton app by default - SingleFrameView)
Will it work?
public static void main(String[] args) {
if (args == null) {
args = new String[1];
args[0] = "Xmx512m";
…