Yes you can
http://www.devx.com/tips/Tip/5578
Sanny
> Is there any way to increase the amount of heap memory available to the
> JVM? I'm getting some OutOfMemoryErrors that I'd like to avoid.
Yes. Google "heap size"
Alun Harford
>Is there any way to increase the amount of heap memory available to the
>JVM? I'm getting some OutOfMemoryErrors that I'd like to avoid.
see http://mindprod.com/jgloss/javaexe.html

Signature
Canadian Mind Products, Roedy Green.
http://mindprod.com Java custom programming, consulting and coaching.
gadominas@gmail.com - 05 Feb 2006 20:36 GMT
the maximum heap size which you can play is 1.5GB.
try to set this heap amount to your preferable size as follow:
-Xmx<your_heap_size>m
Mark Thornton - 05 Feb 2006 22:11 GMT
> the maximum heap size which you can play is 1.5GB.
> try to set this heap amount to your preferable size as follow:
> -Xmx<your_heap_size>m
On many Windows systems the maximum is rather lower than this, some
times even less than 1GB. It depends on the location system DLLs which
fragment the available address space. The heap requires contiguous
address space.
Mark Thornton