Force VM to launch in 32-bit mode WebStart JNLP

前端 未结 1 1370
梦毁少年i
梦毁少年i 2021-01-03 03:12

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条回答
  • 2021-01-03 03:27

    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"/>
    
    0 讨论(0)
提交回复
热议问题