can not set parameters for JRE in control panel for Windows 7 32 bit
This is a weird problem. On one of our demo machines running Windows 7, we are trying to increase the amount of memory allocated to the heap. I open the Java control panel. Click on the Java tab and the click the View button. I type -Xmx256m in the Runtime Parameters fields. Then click 开发者_运维问答OK. So far so good. However, if I navigate away from the tab and then navigate back, the parameters that I just typed disappear. Any ideas?
I'm using Win 7 64 bit, but had the same problem. This solution worked for me:
- After typing your values in the Runtime Parameters field, click 'OK'
- After the settings dialog disappears, click 'Apply' in the main control panel dialog.
If you click 'View...' again, you'll see the setting now appears.
I'm not sure if this can be done from JRE control panel but you can create environment variable with name '_JAVA_OPTS' and set any java parameters there (-Xmx256m). This will be picked up by any java process started on that computer.
精彩评论