Creating 32 bit JavaFx Native Bundle in 64 bit machine

两盒软妹~` 提交于 2020-01-22 12:22:20

问题


I have my machine and IDE with following configuration

Product Version: NetBeans IDE 7.2 (Build 201207171143) Java: 1.7.0_07; Java HotSpot(TM) 64-Bit Server VM 23.3-b01 System: Windows 7 version 6.1 running on amd64; Cp1252; en_US (nb)

The JavaFx bundle (.exe) created during build is of 64 bit. My users are in 32 bit machine so I need to create bundles in 32 bit. Is there any way I can create 32 bit exe files using my machine

Tried downloding 32 bit JDK and pointed the same in the project properties but i am not sure if the exe created in 32 bit or not because in task manager the application does not know *32 next to it.


回答1:


You can by using a 32bit JDK:

    <fx:platform basedir="C:\Program Files (x86)\Java\jdk1.8.0_121"/> 


来源:https://stackoverflow.com/questions/12950051/creating-32-bit-javafx-native-bundle-in-64-bit-machine

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