Force VM to launch in 32-bit mode WebStart JNLP

北慕城南 提交于 2019-12-18 17:03:23

问题


I am running a Java 32-bit app on Mac OS X Leopard via Web Start. I need to make sure the VM loads in 32-bit mode. How can I do this in the JNLP?


回答1:


I found the answer right after I posted. In the "resources" tag you can do a line like below. The "-d32" will force the 32-bit VM load:

<j2se version="1.5+" java-vm-args="-d32" href="http://java.sun.com/products/autodl/j2se"/>


来源:https://stackoverflow.com/questions/1478139/force-vm-to-launch-in-32-bit-mode-webstart-jnlp

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!