Bonjour,
Je suis confronté au meme problème avec les images. J'ai cherché un peu du coté des options de compilation en java et voici un extrait concernant la taille de la mémoire allouée au programme que j'ai trouvé :
----------------
-Joption
Pass option to the java launcher called by javac. For example, -J-Xms48m sets the startup memory to 48 megabytes. Although it does not begin with -X, it is not a `standard option' of javac. It is a common convention for -J to pass options to the underlying VM executing applications written in Java.
Note that CLASSPATH, -classpath, -bootclasspath, and -extdirs do not specify the classes used to run javac. Fiddling with the implementation of the compiler in this way is usually pointless and always risky. If you do need to do this, use the -J option to pass through options to the underlying java launcher.
----------------
Le problème c'est qu'il faut donner ça à javac et non pas à java, donc j'ai pas réussi à utiliser cette option avec eclipse. Sinon la solution je pense c'est de compiler avec un makefile sous linux ou un .bat sous windows !