Difference between revisions of "Changing applet's heap size via HTML"

From JPCT
Jump to: navigation, search
(Created page with 'Just add <pre><param name="java_arguments" value="-Xmx256m"></pre> to your html file and change 256m to suit your needs (in MB) Ex.: <pre> <applet code="MyApplet" archive="MyAppl...')
(No difference)

Revision as of 10:29, 24 April 2009

Just add
<param name="java_arguments" value="-Xmx256m">
to your html file and change 256m to suit your needs (in MB) Ex.:
<applet code="MyApplet" archive="MyApplet.jar" codebase="." width="800" height="600">
    <param name="java_arguments" value="-Xmx256m">
</applet>